From 8bd2704f574d64d3ed09881a3feadb3e8dfc84d5 Mon Sep 17 00:00:00 2001 From: dummdidumm <5968653+dummdidumm@users.noreply.github.com> Date: Tue, 3 Apr 2018 09:47:15 +0200 Subject: [PATCH] #853 build fix --- modules/store-devtools/spec/extension.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/store-devtools/spec/extension.spec.ts b/modules/store-devtools/spec/extension.spec.ts index 05411613c4..2ffb27c154 100644 --- a/modules/store-devtools/spec/extension.spec.ts +++ b/modules/store-devtools/spec/extension.spec.ts @@ -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); @@ -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);