storybook/examples/angular-cli/e2e/app.e2e-spec.ts
Carlos Vega c05e5303ca Updating angular version to latest beta and fixing errors regarding @types/node dependencies
Downgraded the version of `@types/node` used for the knobs addon. There's a well known issue with TS + lerna repositories (hoisted deps and symlinks). This fixes the issue for the time being.

Signed-off-by: Carlos Vega <clmvega@gmail.com>
2017-08-18 18:18:58 +02:00

15 lines
296 B
TypeScript

import { AppPage } from './app.po';
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!');
});
});