twbs--bootstrap/Gruntfile.js

30 lines
719 B
JavaScript
Raw Normal View History

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