Newer
Older
describe('AppModule', () => {
let appModule: AppModule;
beforeEach(() => {
appModule = new AppModule();
});
it('should create an instance', () => {
expect(appModule).toBeTruthy();
});
});
describe('AppModule', () => {
let appModule: AppModule;
beforeEach(() => {
appModule = new AppModule();
});
it('should create an instance', () => {
expect(appModule).toBeTruthy();
});
});