From 78cefbbf2365ec10b8d0d80362964e90ee0dbcb9 Mon Sep 17 00:00:00 2001 From: aokrushko Date: Thu, 23 Jan 2020 21:40:15 -0500 Subject: [PATCH] feat(store): testing - expose MockStore provider --- modules/store/testing/src/testing.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/store/testing/src/testing.ts b/modules/store/testing/src/testing.ts index 70f41c742e..c7d5fc37fa 100644 --- a/modules/store/testing/src/testing.ts +++ b/modules/store/testing/src/testing.ts @@ -23,6 +23,7 @@ export function provideMockStore( return [ ActionsSubject, MockState, + MockStore, { provide: INITIAL_STATE, useValue: config.initialState || {} }, { provide: MOCK_SELECTORS, useValue: config.selectors }, { provide: StateObservable, useClass: MockState },