Skip to content

Commit 0ed83dd

Browse files
author
Matt Lewis
committed
test: fix tests
1 parent cfab254 commit 0ed83dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/entry.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ TestBed.initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicT
3030
let rafStub: sinon.SinonStub;
3131
beforeEach(() => {
3232
// TODO - delete this once zone.js v0.8.13 lands
33-
rafStub = sinon.stub(window, 'requestAnimationFrame').callsArg(0);
33+
rafStub = sinon.stub(window, 'requestAnimationFrame').callsArgAsync(0);
3434
});
3535

3636
afterEach(() => {

0 commit comments

Comments
 (0)