mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-24 05:02:24 +08:00
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>
15 lines
296 B
TypeScript
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!');
|
|
});
|
|
});
|