Skip to content

Commit

Permalink
SHIBUI-823 Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Sep 5, 2018
1 parent ec7cd7e commit 683feca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ui/src/app/metadata/domain/effect/entity.effect.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
import { NgbModalStub } from '../../../../testing/modal.stub';
import { EntityAttributesFilterEntity, FileBackedHttpMetadataResolver } from '../entity';

import * as fromRoot from '../../../app.reducer';
import { StoreModule } from '@ngrx/store';

describe('Entity Effects', () => {
let effects: EntityEffects;
let providerService: any;
Expand All @@ -35,6 +38,9 @@ describe('Entity Effects', () => {
},
{ provide: Actions, useFactory: getActions }
],
imports: [
StoreModule.forRoot(fromRoot.reducers)
]
});

effects = TestBed.get(EntityEffects);
Expand Down

0 comments on commit 683feca

Please sign in to comment.