mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2024-11-14 06:57:17 +00:00
15 lines
303 B
TypeScript
15 lines
303 B
TypeScript
|
import { AppPage } from './app.po';
|
||
|
|
||
|
describe('tutorial-framework-ng App', () => {
|
||
|
let page: AppPage;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
page = new AppPage();
|
||
|
});
|
||
|
|
||
|
it('should display welcome message', () => {
|
||
|
page.navigateTo();
|
||
|
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
||
|
});
|
||
|
});
|