aeb06133
Angular CLI
chore: initial co...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { Ng2TestModalPage } from './app.po';
describe('ng2-test-modal App', () => {
let page: Ng2TestModalPage;
beforeEach(() => {
page = new Ng2TestModalPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});
|