-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprotractor.conf.js
More file actions
52 lines (47 loc) · 1.43 KB
/
protractor.conf.js
File metadata and controls
52 lines (47 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// @ts-check
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts
const tsConfigFile = process.env.PROTRACTOR_PLUGIN_TS_CONF_FILE || require('path').join(__dirname, './tsconfig.json');
require('ts-node').register({
project: tsConfigFile,
});
require("tsconfig-paths").register({
baseUrl: './',
paths: require(tsConfigFile).compilerOptions.paths
});
const {SpecReporter} = require('jasmine-spec-reporter');
/** @type IgnoreTask[] */
const ignoreTasks = [{source: 'setTimeout'}, {source: 'setInterval'}, {source: 'XMLHttpRequest.send'}]; // TODO change dynamic by tests
/**
* @type { import("protractor").Config }
*/
exports.config = {
SELENIUM_PROMISE_MANAGER: false,
plugins: [
{
// package: 'protractor-sync-options-plugin',
// inline: require('../projects/protractor-sync-options-plugin/src/public-api'),
path: '../projects/protractor-sync-options-plugin/src/public-api',
ignoreTasks: ignoreTasks,
}
],
allScriptsTimeout: 5000,
specs: [
'./src/**/*.e2e-spec.ts'
],
capabilities: {
browserName: 'chrome'
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
print: function () {
}
},
onPrepare() {
jasmine.getEnv().addReporter(new SpecReporter({spec: {displayStacktrace: true}}));
}
};