Files
my-dayz/e2e/app.e2e-spec.ts
Angular CLI 7068d20183 chore: initial commit from @angular/cli
_                      _                 ____ _     ___
   / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
  / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
 / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
/_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
               |___/
2017-05-10 19:05:25 +03:00

15 lines
302 B
TypeScript

import { MyDayzPage } from './app.po';
describe('my-dayz App', () => {
let page: MyDayzPage;
beforeEach(() => {
page = new MyDayzPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});