Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(store): remove getMockStore in favor of createMockStore (#3835)
BREAKING CHANGES: The `getMockStore` function is removed in favor of `createMockStore` BEFORE: ```ts import { getMockStore } from '@ngrx/store/testing'; const mockStore = getMockStore(); ``` AFTER: ```ts import { createMockStore } from '@ngrx/store/testing'; const mockStore = createMockStore(); ```
- Loading branch information