We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640e66d commit 8371cb5Copy full SHA for 8371cb5
src/app/modules/activities-management/store/activity-management.selectors.spec.ts
@@ -1,7 +1,16 @@
1
+import { TestBed } from '@angular/core/testing';
2
import * as selectors from './activity-management.selectors';
3
+import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
4
-describe('ActivityManagement Selectors', () => {
5
+fdescribe('ActivityManagement Selectors', () => {
6
7
+ beforeEach(() => {
8
+ TestBed.configureTestingModule({
9
+ imports: [ MatProgressSpinnerModule ],
10
+ declarations: [ ],
11
+ }).compileComponents();
12
+ });
13
+
14
it('reads activityIdtoEdit from state', () => {
15
const activityId = 'id';
16
const activityIdFound = selectors.activityIdToEdit.projector({ activityIdToEdit: activityId });
0 commit comments