mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-20 05:27:56 +00:00
15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
|
import { Gns3WebUiPage } from './app.po';
|
||
|
|
||
|
describe('gns3-web-ui App', () => {
|
||
|
let page: Gns3WebUiPage;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
page = new Gns3WebUiPage();
|
||
|
});
|
||
|
|
||
|
it('should display welcome message', () => {
|
||
|
page.navigateTo();
|
||
|
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
||
|
});
|
||
|
});
|