Skip to content

Instantly share code, notes, and snippets.

@T-e-j-k-u-m-a-r
Forked from lydemann/protractor.conf.js
Created May 27, 2021 11:05
Show Gist options
  • Save T-e-j-k-u-m-a-r/4864e762b5b8ef577aa02d2b3529c222 to your computer and use it in GitHub Desktop.
Save T-e-j-k-u-m-a-r/4864e762b5b8ef577aa02d2b3529c222 to your computer and use it in GitHub Desktop.
protractor.conf.js
// 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'
},
SELENIUM_PROMISE_MANAGER: false,
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 999999,
print: function () { }
},
onPrepare() {
require('ts-node').register({
project: require('path').join(__dirname, './tsconfig.e2e.json')
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
browser.driver.manage().window().setSize(1366, 1024);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment