1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00
openuds-gui/e2e/app.e2e-spec.ts

15 lines
285 B
TypeScript
Raw Normal View History

import { AppPage } from './app.po';
describe('uds App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to uds!');
});
});