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