33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import { TestBed, async } from '@angular/core/testing';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
import { InfoSectionComponent } from './info.section.component';
|
|
|
|
describe('app::sections::group::InfoSectionComponent', () => {
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [RouterTestingModule],
|
|
declarations: [InfoSectionComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
it('should create the app', () => {
|
|
const fixture = TestBed.createComponent(InfoSectionComponent);
|
|
const app = fixture.componentInstance;
|
|
expect(app).toBeTruthy();
|
|
});
|
|
|
|
it(`should have as title 'ucap-lg-web'`, () => {
|
|
const fixture = TestBed.createComponent(InfoSectionComponent);
|
|
const app = fixture.componentInstance;
|
|
});
|
|
|
|
it('should render title', () => {
|
|
const fixture = TestBed.createComponent(InfoSectionComponent);
|
|
fixture.detectChanges();
|
|
const compiled = fixture.nativeElement;
|
|
expect(compiled.querySelector('.content span').textContent).toContain(
|
|
'ucap-lg-web app is running!'
|
|
);
|
|
});
|
|
});
|