mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
d2b024ff43
FIX ErrorObj from TRESTClient
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!');
|
|
});
|
|
});
|