mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-19 13:07:52 +00:00
15 lines
293 B
TypeScript
15 lines
293 B
TypeScript
import { Gns3WebUiPage } from './app.po';
|
|
|
|
describe('gns3-web-ui App', () => {
|
|
let page: Gns3WebUiPage;
|
|
|
|
beforeEach(() => {
|
|
page = new Gns3WebUiPage();
|
|
});
|
|
|
|
it('should display title', () => {
|
|
page.navigateTo();
|
|
expect(page.getTitleText()).toEqual('GNS3 Web UI');
|
|
});
|
|
});
|