35 lines
1005 B
TypeScript
35 lines
1005 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { HomeComponent } from './home.component';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
|
|
describe('HomeComponent', () => {
|
|
let component: HomeComponent;
|
|
let fixture: ComponentFixture<HomeComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [HomeComponent],
|
|
imports: [TranslateModule.forRoot(), RouterTestingModule]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(HomeComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
|
|
it('should render title in a h1 tag', async(() => {
|
|
const compiled = fixture.debugElement.nativeElement;
|
|
expect(compiled.querySelector('h1').textContent).toContain(
|
|
'PAGES.HOME.TITLE'
|
|
);
|
|
}));
|
|
});
|