fix/ e2e test with jasmine2
This commit is contained in:
@@ -4,26 +4,28 @@
|
||||
const { SpecReporter } = require('jasmine-spec-reporter');
|
||||
|
||||
exports.config = {
|
||||
allScriptsTimeout: 11000,
|
||||
allScriptsTimeout: 25000,
|
||||
getPageTimeout: 15000,
|
||||
delayBrowserTimeInSeconds: 0,
|
||||
specs: [
|
||||
'./e2e/**/*.e2e-spec.ts'
|
||||
],
|
||||
capabilities: {
|
||||
'browserName': 'chrome',
|
||||
chromeOptions: {
|
||||
binary: './node_modules/electron/dist/electron.exe',
|
||||
args: ['--test-type=webdriver', 'app=dist/main.js']
|
||||
binary: './node_modules/electron/dist/electron.exe',
|
||||
args: ['--test-type=webdriver', 'app=dist/main.js']
|
||||
}
|
||||
},
|
||||
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'
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user