tycg_carviolation_FE/e2e/app.e2e-spec.ts
2023-08-03 10:37:39 +08:00

15 lines
307 B
TypeScript

import { CoreUIPage } from './app.po';
describe('core-ui App', function() {
let page: CoreUIPage;
beforeEach(() => {
page = new CoreUIPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});