public-gateway-cacher/src/app/app.component.spec.ts

36 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-07-08 00:20:02 +00:00
import { async, TestBed } from '@angular/core/testing';
2019-11-29 02:20:50 +00:00
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
2020-07-08 00:20:02 +00:00
describe('AppComponent', (): void => {
beforeEach(async((): void => {
2019-11-29 02:20:50 +00:00
TestBed.configureTestingModule({
imports: [
RouterTestingModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
2020-07-08 00:20:02 +00:00
it('should create the app', (): void => {
2019-11-29 02:20:50 +00:00
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
});
2020-07-08 00:20:02 +00:00
it(`should have as title 'public-gateway-cacher'`, (): void => {
2019-11-29 02:20:50 +00:00
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('public-gateway-cacher');
});
2020-07-08 00:20:02 +00:00
it('should render title', (): void => {
2019-11-29 02:20:50 +00:00
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('public-gateway-cacher app is running!');
});
});