2017-04-08 00:24:44 +02:00
|
|
|
import { TestBed, async } from '@angular/core/testing';
|
|
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
2017-03-15 02:22:24 +01:00
|
|
|
|
2017-04-08 00:24:44 +02:00
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
|
|
|
|
describe('AppComponent', () => {
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
imports: [
|
|
|
|
RouterTestingModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AppComponent
|
|
|
|
],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should create the app', async(() => {
|
|
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
|
|
const app = fixture.debugElement.componentInstance;
|
|
|
|
expect(app).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|