Skip to content

Commit

Permalink
test: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Lewis committed Jun 25, 2017
1 parent cfab254 commit 0ed83dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ TestBed.initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicT
let rafStub: sinon.SinonStub;
beforeEach(() => {
// TODO - delete this once zone.js v0.8.13 lands
rafStub = sinon.stub(window, 'requestAnimationFrame').callsArg(0);
rafStub = sinon.stub(window, 'requestAnimationFrame').callsArgAsync(0);
});

afterEach(() => {
Expand Down

0 comments on commit 0ed83dd

Please sign in to comment.