generator-fountain-angular2
Version:
Yeoman Fountain generator to scaffold a webapp with Angular 2 written in ES6 (Babel), TypeScript through Webpack or SystemJS including tools Gulp 4, ESLint, Browsersync and Karma
21 lines (18 loc) • 552 B
text/typescript
import {HelloComponent} from './hello';
import {TestBed, async} from '@angular/core/testing';
describe('hello component', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
HelloComponent
]
});
TestBed.compileComponents();
}));
it('should render hello world', () => {
const fixture = TestBed.createComponent(HelloComponent);
fixture.detectChanges();
const hello = fixture.nativeElement;
expect(hello.querySelector('h1').textContent).toBe('Hello World!');
});
});