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