mirror of
https://github.com/arnaucube/commonroutesApp.git
synced 2026-02-08 20:16:45 +01:00
24 lines
604 B
JavaScript
24 lines
604 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (grunt, options) {
|
|
return {
|
|
options: {
|
|
keepAlive: false,
|
|
configFile: 'test/protractor.conf.js',
|
|
args: {
|
|
specs: ['test/e2e/*.js']
|
|
}
|
|
},
|
|
run: {},
|
|
saucelabs: {
|
|
options: {
|
|
args: {
|
|
baseUrl: "http://<%= pkg.org %>.github.io/<%= pkg.name %>/examples/",
|
|
sauceUser: process.env.SAUCE_USERNAME,
|
|
sauceKey: process.env.SAUCE_ACCESS_KEY
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|