9f291308aa
tests.
16 lines
564 B
TypeScript
16 lines
564 B
TypeScript
import { TestBed, async } from '@angular/core/testing';
|
|
import { AppComponent } from './app.component';
|
|
import { E2EImportsModule } from './../e2e-imports.module';
|
|
describe('AppComponent', () => {
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [E2EImportsModule]
|
|
}).compileComponents();
|
|
}));
|
|
it('should create the app', async(() => {
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
const app = fixture.debugElement.componentInstance;
|
|
expect(app).toBeTruthy();
|
|
}));
|
|
});
|