2018-07-19 15:20:27 -04:00
|
|
|
import { TestBed, async } from '@angular/core/testing';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
describe('AppComponent', () => {
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [
|
|
|
|
AppComponent
|
|
|
|
],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
it('should create the app', async(() => {
|
|
|
|
const fixture = TestBed.createComponent(AppComponent);
|
2020-03-17 22:28:38 +02:00
|
|
|
const app = fixture.componentInstance;
|
2018-07-19 15:20:27 -04:00
|
|
|
expect(app).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|