forked from drinky78/sortello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprotractor.conf.js.dist
More file actions
29 lines (29 loc) · 1014 Bytes
/
protractor.conf.js.dist
File metadata and controls
29 lines (29 loc) · 1014 Bytes
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
exports.config = {
specs: [
'tests/protractor/specs/asc-choices-spec.js',
'tests/protractor/specs/desc-choices-spec.js',
'tests/protractor/specs/forget-spec.js',
'tests/protractor/specs/undo-spec.js',
'tests/protractor/specs/undo-forget-spec.js',
'tests/protractor/specs/undo-multiple-spec.js',
'tests/protractor/specs/recap-spec.js',
'tests/protractor/specs/send-to-board-spec.js'
],
restartBrowserBetweenTests: false,
capabilities: {
browserName: 'chrome',
},
baseUrl: 'http://localhost:4000',
framework: 'jasmine',
params: {
testTrelloUsername: '',
testTrelloPassword: '',
testTrelloExtId: ''
},
onPrepare: function() {
browser.ignoreSynchronization = true;
protractor.accessFromChromeExtension = require('./tests/protractor/accessFromChromeExtension.js');
protractor.selectWindow = require('./tests/protractor/selectWindow.js');
protractor.expectRecap = require('./tests/protractor/expectRecap.js');
}
};