Skip to content

Commit

Permalink
#853 build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Apr 4, 2018
1 parent f31a048 commit 8bd2704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/store-devtools/spec/extension.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ describe('DevtoolsExtension', () => {
});

it('should not notify extension of PERFORM_ACTIONs', () => {
const action = new PerformAction({ type: 'ACTION' });
const action = new PerformAction({ type: 'ACTION' }, +Date.now());
const state = createState(undefined, undefined, true);

devtoolsExtension.notify(action, state);
Expand Down Expand Up @@ -394,7 +394,7 @@ describe('DevtoolsExtension', () => {
});

it('should not notify extension of PERFORM_ACTIONs', () => {
const action = new PerformAction({ type: 'ACTION' });
const action = new PerformAction({ type: 'ACTION' }, +Date.now());
const state = createState(undefined, undefined, undefined, true);

devtoolsExtension.notify(action, state);
Expand Down

0 comments on commit 8bd2704

Please sign in to comment.