Mock component inside AppComponent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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