2018-07-23 16:42:17 +02:00
|
|
|
import { CoreModule } from './core.module';
|
|
|
|
|
|
|
|
describe('CoreModule', () => {
|
|
|
|
let coreModule: CoreModule;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-09-02 11:05:09 +02:00
|
|
|
coreModule = new CoreModule(null);
|
2018-07-23 16:42:17 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should create an instance', () => {
|
|
|
|
expect(coreModule).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|