Skip to content

Instantly share code, notes, and snippets.

@FunnyGhost
Last active March 12, 2019 15:10
Show Gist options
  • Save FunnyGhost/f3f0639b2c24049016e64704beffbade to your computer and use it in GitHub Desktop.
Save FunnyGhost/f3f0639b2c24049016e64704beffbade to your computer and use it in GitHub Desktop.
describe('Render', () => {
beforeEach(() => {
fixture.detectChanges();
});
it('should have a title', () => {
const titleElements = fixture.debugElement.queryAll(By.css('h1'));
expect(titleElements.length).toBe(1);
expect(titleElements[0].nativeElement.innerHTML).toBe('Favorite movies');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment