mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 18:44:14 +00:00
27 lines
890 B
TypeScript
27 lines
890 B
TypeScript
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
|
|
|
import 'zone.js/testing';
|
|
|
|
import { getTestBed } from '@angular/core/testing';
|
|
import {
|
|
BrowserDynamicTestingModule,
|
|
platformBrowserDynamicTesting,
|
|
} from '@angular/platform-browser-dynamic/testing';
|
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
import { MockStore } from '@ngrx/store/testing';
|
|
|
|
// First, initialize the Angular testing environment.
|
|
getTestBed().initTestEnvironment(
|
|
BrowserDynamicTestingModule,
|
|
platformBrowserDynamicTesting(),
|
|
{ teardown: { destroyAfterEach: false } },
|
|
);
|
|
|
|
|
|
jasmine.getEnv().afterEach(() => {
|
|
// If store is mocked, reset state after each test (see https://ngrx.io/guide/migration/v13)
|
|
getTestBed().inject(MockStore, null)?.resetSelectors();
|
|
// Close any leftover modals
|
|
getTestBed().inject(NgbModal, null)?.dismissAll?.();
|
|
});
|