Skip to content
Snippets Groups Projects
app.module.spec.ts 251 B
Newer Older
  • Learn to ignore specific revisions
  • rhenck's avatar
    rhenck committed
    import { AppModule } from './app.module';
    
    
    describe('AppModule', () => {
      let appModule: AppModule;
    
      beforeEach(() => {
        appModule = new AppModule();
      });
    
      it('should create an instance', () => {
        expect(appModule).toBeTruthy();
      });
    });