mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-05-14 22:00:30 +09:00
15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
import { WebUiPage } from './app.po';
|
|
|
|
describe('web-ui App', () => {
|
|
let page: WebUiPage;
|
|
|
|
beforeEach(() => {
|
|
page = new WebUiPage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toContain('ANGULAR-SPRING-JWT-STARTER');
|
|
});
|
|
});
|