mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-08 07:48:02 +08:00
e5af98b04b
Move e2e tests Code refactoring
18 lines
321 B
JavaScript
18 lines
321 B
JavaScript
|
|
var cfg = require('./configuration');
|
|
|
|
exports.config = {
|
|
"tests": "./tests/*_test.js",
|
|
"timeout": 10000,
|
|
"output": "./output",
|
|
"helpers": {
|
|
"WebDriverIO": {
|
|
"url": cfg.url,
|
|
"browser": "phantomjs"
|
|
}
|
|
},
|
|
"include": {},
|
|
"bootstrap": false,
|
|
"mocha": {},
|
|
"name": "RainLoop e2e tests"
|
|
};
|