fix/ e2e test with jasmine2

This commit is contained in:
Maxime GRIS
2017-07-16 19:43:04 +02:00
parent 2a90191458
commit 9c51f3247b
5 changed files with 22 additions and 15 deletions

View File

@@ -1,4 +1,5 @@
import { AngularElectronPage } from './app.po';
import { browser, element, by } from 'protractor';
describe('angular-electron App', () => {
let page: AngularElectronPage;
@@ -8,7 +9,6 @@ describe('angular-electron App', () => {
});
it('should display message saying App works !', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('App works !');
expect(element(by.css('app-home h1')).getText()).toMatch('App works !');
});
});