mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
import { RouterSamplePage } from './app.po';
|
|
|
|
describe('router-sample App', function() {
|
|
let page: RouterSamplePage;
|
|
|
|
beforeEach(() => {
|
|
page = new RouterSamplePage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|