1 2 3 4 5 6 7 8 9 10 11 12 13
import { AppModule } from './app.module'; describe('AppModule', () => { let appModule: AppModule; beforeEach(() => { appModule = new AppModule(); }); it('should create an instance', () => { expect(appModule).toBeTruthy(); }); });