mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
17 lines
367 B
TypeScript
17 lines
367 B
TypeScript
import { AppPage } from './app.po';
|
|
// tslint:disable-next-line:no-implicit-dependencies
|
|
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!');
|
|
});
|
|
});
|