mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 19:32:19 +01:00
15 lines
212 B
JavaScript
15 lines
212 B
JavaScript
'use strict';
|
|
|
|
// Protractor configuration
|
|
var config = {
|
|
specs: ['modules/*/tests/e2e/*.js']
|
|
};
|
|
|
|
if (process.env.TRAVIS) {
|
|
config.capabilities = {
|
|
browserName: 'firefox'
|
|
};
|
|
}
|
|
|
|
exports.config = config;
|