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