2019-08-09 13:38:51 +02:00
|
|
|
import { TestBed, async } from '@angular/core/testing';
|
|
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
|
|
|
|
describe('AppComponent', () => {
|
2020-04-14 11:28:33 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
imports: [RouterTestingModule],
|
|
|
|
declarations: [AppComponent],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2019-08-09 13:38:51 +02:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
it('should create the app', () => {
|
|
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
|
|
const app = fixture.debugElement.componentInstance;
|
|
|
|
expect(app).toBeTruthy();
|
|
|
|
});
|
2019-08-09 13:38:51 +02:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
it(`should have as title 'framadate'`, () => {
|
|
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
|
|
const app = fixture.debugElement.componentInstance;
|
|
|
|
expect(app.title).toEqual('framadate');
|
|
|
|
});
|
2019-08-09 13:38:51 +02:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
it('should render title in a h1 tag', () => {
|
|
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
|
|
fixture.detectChanges();
|
|
|
|
const compiled = fixture.debugElement.nativeElement;
|
|
|
|
expect(compiled.querySelector('h1').textContent).toContain('Welcome to framadate!');
|
|
|
|
});
|
2019-08-09 13:38:51 +02:00
|
|
|
});
|