Add protractor config

This commit is contained in:
Manuel Friedli 2018-09-08 00:14:32 +02:00
父節點 532a080ac9
當前提交 20737a6a68
共有 2 個文件被更改,包括 32 次插入1 次删除

2
.gitignore vendored
查看文件

@ -35,7 +35,7 @@ testem.log
/typings
# e2e
/e2e/*.js
# /e2e/*.js
/e2e/*.map
# System Files

31
e2e/protractor.conf.js Normal file
查看文件

@ -0,0 +1,31 @@
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts
const { SpecReporter } = require('jasmine-spec-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./src/**/*.e2e-spec.ts'
],
capabilities: {
'browserName': 'chrome',
chromeOptions: {
args: [ "--headless", "--disable-gpu", "--no-sandbox" ]
}
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
print: function() {}
},
onPrepare() {
require('ts-node').register({
project: require('path').join(__dirname, './tsconfig.e2e.json')
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
}
};