You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
604 B

  1. 'use strict';
  2. module.exports = function (grunt, options) {
  3. return {
  4. options: {
  5. keepAlive: false,
  6. configFile: 'test/protractor.conf.js',
  7. args: {
  8. specs: ['test/e2e/*.js']
  9. }
  10. },
  11. run: {},
  12. saucelabs: {
  13. options: {
  14. args: {
  15. baseUrl: "http://<%= pkg.org %>.github.io/<%= pkg.name %>/examples/",
  16. sauceUser: process.env.SAUCE_USERNAME,
  17. sauceKey: process.env.SAUCE_ACCESS_KEY
  18. }
  19. }
  20. }
  21. };
  22. };