mirror of
https://gitlab.com/openlp/web-remote.git
synced 2024-12-25 12:44:06 +00:00
15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
import { AppPage } from './app.po';
|
|
|
|
describe('workspace-project App', () => {
|
|
let page: AppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AppPage();
|
|
});
|
|
|
|
it('should display welcome message', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
|
});
|
|
});
|