mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
// @ts-check
|
|
// Protractor configuration file, see link for more information
|
|
// https://github.com/angular/protractor/blob/master/lib/config.ts
|
|
|
|
const {SpecReporter, StacktraceOption} = require('jasmine-spec-reporter');
|
|
|
|
/**
|
|
* @type { import("protractor").Config }
|
|
*/
|
|
exports.config = {
|
|
allScriptsTimeout: 11000,
|
|
specs: ['./src/**/*.e2e-spec.ts'],
|
|
chromeDriver: process.env.CHROMEDRIVER_BIN,
|
|
capabilities: {
|
|
browserName: 'chrome',
|
|
chromeOptions: {
|
|
binary: process.env.CHROME_BIN,
|
|
// See /integration/README.md#browser-tests for more info on these args
|
|
args: [
|
|
'--no-sandbox',
|
|
'--headless',
|
|
'--disable-gpu',
|
|
'--disable-dev-shm-usage',
|
|
'--hide-scrollbars',
|
|
'--mute-audio',
|
|
],
|
|
},
|
|
},
|
|
directConnect: true,
|
|
SELENIUM_PROMISE_MANAGER: false,
|
|
baseUrl: 'http://localhost:4200/',
|
|
framework: 'jasmine',
|
|
jasmineNodeOpts: {
|
|
showColors: true,
|
|
defaultTimeoutInterval: 30000,
|
|
print: function () {},
|
|
},
|
|
onPrepare() {
|
|
require('ts-node').register({
|
|
project: require('path').join(__dirname, './tsconfig.json'),
|
|
});
|
|
jasmine.getEnv().addReporter(
|
|
new SpecReporter({
|
|
spec: {
|
|
displayStacktrace: StacktraceOption.PRETTY,
|
|
},
|
|
}),
|
|
);
|
|
},
|
|
};
|