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 !');
});
});

View File

@@ -1,11 +1,8 @@
import { browser, element, by } from 'protractor';
/* tslint:disable */
export class AngularElectronPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-home h1')).getText();
navigateTo(route: string) {
return browser.get(route);
}
}

View File

@@ -4,7 +4,9 @@
const { SpecReporter } = require('jasmine-spec-reporter');
exports.config = {
allScriptsTimeout: 11000,
allScriptsTimeout: 25000,
getPageTimeout: 15000,
delayBrowserTimeInSeconds: 0,
specs: [
'./e2e/**/*.e2e-spec.ts'
],
@@ -17,13 +19,13 @@ exports.config = {
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
framework: 'jasmine2',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
print: function() {}
print: function () { }
},
beforeLaunch: function() {
beforeLaunch: function () {
require('ts-node').register({
project: 'e2e/tsconfig.e2e.json'
});

View File

@@ -8,6 +8,9 @@
},
"exclude": [
"test.ts",
"**/*.spec.ts"
"**/*.spec.ts",
"dist",
"app-builds",
"node_modules"
]
}

View File

@@ -16,5 +16,10 @@
"include": [
"**/*.spec.ts",
"**/*.d.ts"
],
"exclude": [
"dist",
"app-builds",
"node_modules"
]
}