2018-10-26 11:33:25 +08:00
|
|
|
import { MainModule } from './main.module';
|
|
|
|
|
|
|
|
|
|
describe('MainModule', () => {
|
|
|
|
|
let mainModule: MainModule;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
mainModule = new MainModule();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should create an instance', () => {
|
|
|
|
|
expect(mainModule).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|