Skip to content

Instantly share code, notes, and snippets.

@evan-boissonnot
Created February 6, 2019 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evan-boissonnot/fe98ed973edc0346edd6c396219133c6 to your computer and use it in GitHub Desktop.
Save evan-boissonnot/fe98ed973edc0346edd6c396219133c6 to your computer and use it in GitHub Desktop.
Mock component inside AppComponent
import { TestBed, async } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { MockComponent } from 'ng2-mock-component';
import { AppComponent } from './app.component';
import { GlobalMenuComponent } from './global-menu/global-menu.component';
describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule,
],
declarations: [
AppComponent,
MockComponent({selector: 'app-global-menu'})
],
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'front-end'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('Book my service !');
});
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 front-end!');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment