This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
FoodLoop-Web/e2e/app.e2e-spec.ts

14 lines
301 B
TypeScript

import { CoreUIPage } from './app.po';
describe('LocalLoop App', () => {
let page: CoreUIPage;
beforeEach(() => {
page = new CoreUIPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getLoginHeaderText()).toEqual('Login');
});
});