mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
17 lines
369 B
TypeScript
17 lines
369 B
TypeScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
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(page.getParagraphText() as any).toEqual('Welcome to app!');
|
|
});
|
|
});
|