https://drive.google.com/file/d/1dkFjRWnYFVho75eq61iwFunB-qDSKgeB/view?usp=sharing
// check file
app.component.spec.ts
applehit16
- Node 8+
- NPM or yarn
- Git
- Safari, Chrome, Firefox
cd topcoder-jest-test
git checkout issue-72
npm install
npm run test
npm run test:jest
Chrome, Safari, Firefox
Browser | Result |
---|---|
Chrome 72.0.3626 (Mac OS X 10.14.2) | success |
Safari 11.1.0 (Mac OS X 10.14.2) | success |
Firefox 65.0.0 (Mac OS X 10.14.2) | success |
FAIL src/app/app.component.spec.ts
AppComponent
✕ should create the app (58ms)
● AppComponent › should create the app
TypeError: document.createRange is not a function
17 |
18 | it('should create the app', () => {
> 19 | const range = document.createRange();
| ^
20 | expect(range).to.not.be.undefined;
21 | });
22 | });
at src/app/app.component.spec.ts:19:28
Test Suites: 1 failed, 1 total
Tests: 1 failed, 1 total
Snapshots: 0 total
Time: 2.845s
Ran all test suites.
Expect range
is successfully created after calling document.createRange()
JSDOM does not support Range and Traversal API
jsdom issue: jsdom/jsdom#317
web standard: https://developer.mozilla.org/en-US/docs/Web/API/Range