https://github.com/twbs/bootstrap
Revision 3619586c16ef30214ec8df9b6e3fbfa423c5f623 authored by 汪磊 on 22 July 2017, 02:50:14 UTC, committed by Mark Otto on 30 July 2017, 20:58:52 UTC
1 parent f4f63d8
Raw File
Tip revision: 3619586c16ef30214ec8df9b6e3fbfa423c5f623 authored by 汪磊 on 22 July 2017, 02:50:14 UTC
Update accessibility.md
Tip revision: 3619586
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