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-74
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 (88ms)
● AppComponent › should create the app
AssertionError: expected [Function: load] to be an instance of Function
20 | const el = fixture.nativeElement.querySelector('#test');
21 | const audio = new Audio('');
> 22 | expect(audio.load).to.be.an.instanceof(Function);
| ^
23 | });
24 | });
25 |
at src/app/app.component.spec.ts:22:5
Test Suites: 1 failed, 1 total
Tests: 1 failed, 1 total
Snapshots: 0 total
Time: 1.957s, estimated 2s
Expect TMLMediaElement.prototype.load
, which is also Audio.prototype.load
to be a function
JSDOM does not implement HTMLMediaElement.prototype.load
jsdom issue: jsdom/jsdom#1515