storybook/examples/angular-cli/e2e/app.e2e-spec.ts
Carlos Vega b3e8d0a32e Removing ts lint errors for jasmine
Signed-off-by: Carlos Vega <clmvega@gmail.com>
2017-08-18 18:18:58 +02:00

16 lines
314 B
TypeScript

import { AppPage } from './app.po';
import 'jasmine';
describe('ng5test App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should display welcome message', () => {
page.navigateTo();
expect(<any>(page.getParagraphText())).toEqual('Welcome to app!');
});
});