https://github.com/twbs/bootstrap
Revision f2e912bb0e5041fead48bdbcaaa23de1c40291d5 authored by Mark Otto on 13 July 2017, 04:11:08 UTC, committed by Mark Otto on 13 July 2017, 04:11:08 UTC
2 parent s c6652eb + c00437e
Raw File
Tip revision: f2e912bb0e5041fead48bdbcaaa23de1c40291d5 authored by Mark Otto on 13 July 2017, 04:11:08 UTC
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Tip revision: f2e912b
Gruntfile.js
/*!
 * Bootstrap's Gruntfile
 * https://getbootstrap.com
 * Copyright 2013-2017 The Bootstrap Authors
 * Copyright 2013-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

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'],
          browsers: grunt.file.readYAML('build/sauce_browsers.yml')
        }
      }
    }
  })

  grunt.loadNpmTasks('grunt-saucelabs')
}
back to top