Skip to content

Instantly share code, notes, and snippets.

@Napear
Created April 5, 2020 04:34
Show Gist options
  • Save Napear/29068856a6837a3c2c586b71b460b2f0 to your computer and use it in GitHub Desktop.
Save Napear/29068856a6837a3c2c586b71b460b2f0 to your computer and use it in GitHub Desktop.
// 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: [
'./e2e/**/*.e2e-spec.ts'
],
capabilities: {
'browserName': 'ChromeHeadless',
// For Travis CI only
chromeOptions: {
binary: process.env.CHROME_BIN,
args: ['--no-sandbox', '--disable-gpu', '--disable-dev-shm-usage']
}
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
print: function() {}
},
onPrepare() {
require('ts-node').register({
project: 'e2e/tsconfig.e2e.json'
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment