You've already forked openaccounting-web
mirror of
https://github.com/openaccounting/oa-web.git
synced 2025-12-09 00:51:01 +13:00
15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
|
|
import { AppPage } from './app.po';
|
||
|
|
|
||
|
|
describe('oa-web App', () => {
|
||
|
|
let page: AppPage;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
page = new AppPage();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should display welcome message', () => {
|
||
|
|
page.navigateTo();
|
||
|
|
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
||
|
|
});
|
||
|
|
});
|