mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
simplify ngrx effect registration (#4008)
This commit is contained in:
@@ -41,12 +41,13 @@ import {
|
||||
PrintFileAction,
|
||||
PurgeDeletedNodesAction,
|
||||
RestoreDeletedNodesAction,
|
||||
RouterEffects,
|
||||
SetCurrentFolderAction,
|
||||
SetInfoDrawerStateAction,
|
||||
SetSelectedNodesAction,
|
||||
SharedStoreModule,
|
||||
ShareNodeAction,
|
||||
ShowLoaderAction,
|
||||
SnackbarEffects,
|
||||
UndoDeleteNodesAction,
|
||||
UnlockWriteAction,
|
||||
UnshareNodesAction
|
||||
@@ -67,7 +68,12 @@ describe('NodeEffects', () => {
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [AppTestingModule, SharedStoreModule, EffectsModule.forRoot([NodeEffects, ViewerEffects]), MatDialogModule, MatSnackBarModule],
|
||||
imports: [
|
||||
AppTestingModule,
|
||||
EffectsModule.forRoot([NodeEffects, ViewerEffects, SnackbarEffects, RouterEffects]),
|
||||
MatDialogModule,
|
||||
MatSnackBarModule
|
||||
],
|
||||
providers: [RenditionService]
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user