Files
openaccounting-web/e2e/app.e2e-spec.ts
Patrick Nagurny 5ff09d328d initial commit
2018-10-19 11:28:08 -04:00

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!');
});
});