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
/
adminpanel-ci.conf.js
executable file
·75 lines (67 loc) · 2.08 KB
/
adminpanel-ci.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* 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 customLaunchers = {
'firefox': {
base: 'SauceLabs',
browserName: 'firefox',
platform: 'Windows 8.1',
version: '38'
},
'opera': {
base: 'SauceLabs',
browserName: 'opera',
platform: 'Windows 7',
version: '12'
},
'safari': {
base: 'SauceLabs',
browserName: 'safari',
platform: 'Mac 10.9',
version: '7'
},
'chrome': {
base: 'SauceLabs',
browserName: 'chrome',
platform: 'Windows 8.1',
version: '46'
},
'ie': {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 7',
version: '11'
}
};
module.exports = function (config) {
config.set({
frameworks: ['jasmine'],
customLaunchers: customLaunchers,
browserNoActivityTimeout: 600000,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
sauceLabs: {
testName: 'unit tests'
},
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: Object.keys(customLaunchers),
reporters: ['dots', 'saucelabs'],
singleRun: true
});
};