2014-01-20 16:00:52 -08:00
|
|
|
/*!
|
|
|
|
* Bootstrap's Gruntfile
|
2016-10-04 02:55:59 +10:00
|
|
|
* https://getbootstrap.com
|
2016-12-31 14:20:11 -01:00
|
|
|
* Copyright 2013-2017 The Bootstrap Authors
|
|
|
|
* Copyright 2013-2017 Twitter, Inc.
|
2014-01-20 16:00:52 -08:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
|
|
*/
|
2013-08-03 19:03:38 -04:00
|
|
|
|
2013-12-06 16:51:59 -08:00
|
|
|
module.exports = function (grunt) {
|
2016-12-31 16:25:26 +11:00
|
|
|
'use strict'
|
2013-08-03 19:03:38 -04:00
|
|
|
|
|
|
|
// Project configuration.
|
|
|
|
grunt.initConfig({
|
2013-12-03 18:42:31 -08:00
|
|
|
'saucelabs-qunit': {
|
|
|
|
all: {
|
|
|
|
options: {
|
|
|
|
build: process.env.TRAVIS_JOB_ID,
|
2014-01-15 15:55:47 -08:00
|
|
|
concurrency: 10,
|
2014-06-24 12:12:21 -07:00
|
|
|
maxRetries: 3,
|
2015-01-05 12:40:43 -08:00
|
|
|
maxPollRetries: 4,
|
2017-06-14 11:04:28 +02:00
|
|
|
urls: ['http://localhost:3000/js/tests/index.html?hidepassed'],
|
2017-04-19 21:59:12 +10:00
|
|
|
browsers: grunt.file.readYAML('build/sauce_browsers.yml')
|
2015-08-18 22:47:26 -07:00
|
|
|
}
|
|
|
|
}
|
2013-08-03 19:03:38 -04:00
|
|
|
}
|
2016-12-31 16:25:26 +11:00
|
|
|
})
|
2013-05-04 16:55:52 +02:00
|
|
|
|
2017-04-19 21:59:12 +10:00
|
|
|
grunt.loadNpmTasks('grunt-saucelabs')
|
2016-12-31 16:25:26 +11:00
|
|
|
}
|