This repository has been archived by the owner on Sep 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
e2e.conf.js
executable file
·47 lines (39 loc) · 1.6 KB
/
e2e.conf.js
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
/**
* Copyright (C) 2015 Digimedia Sp. z.o.o. d/b/a Clearcode
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
'use strict';
var protractorConfig = require('./node_modules/gulp-protractor/node_modules/protractor/config.json');
exports.config = {
seleniumServerJar: './node_modules/gulp-protractor/node_modules/protractor/selenium/selenium-server-standalone-' + protractorConfig.webdriverVersions.selenium + '.jar',
chromeDriver: './node_modules/gulp-protractor/node_modules/protractor/selenium/chromedriver',
framework: 'cucumber',
restartBrowserBetweenTests: true,
allScriptsTimeout: 500000,
getPageTimeout: 40000,
capabilities: {
browserName: 'chrome',
version: '',
platform: 'ANY'
},
cucumberOpts: {
require: [
'tests/admin-panel/tests/e2e/**/*scenario.js',
'tests/container-debugger/tests/e2e/**/*scenario.js',
'tests/admin-panel/tests/e2e/support/*.js'
],
tags: '~@skip'
}
};