diff options
| author | Chris Rebert <[email protected]> | 2014-01-07 19:34:49 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-01-07 19:34:49 -0800 |
| commit | a712abd06e76ff353c564f03125eaad8af4b2e74 (patch) | |
| tree | 6367ac06246a63b8f707ea3d5862b3f775506bfe | |
| parent | c891be5e5f9bfba83e7e8ac6cd42150271eba626 (diff) | |
| download | bootstrap-a712abd06e76ff353c564f03125eaad8af4b2e74.tar.xz bootstrap-a712abd06e76ff353c564f03125eaad8af4b2e74.zip | |
enable CSSLint in test suite; fixes #12094
| -rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index b6a284664..bd67ce84d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -300,7 +300,7 @@ module.exports = function (grunt) { var testSubtasks = []; // Skip core tests if running a different subset of the test suite if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'core') { - testSubtasks = testSubtasks.concat(['dist-css', 'jshint', 'jscs', 'qunit']); + testSubtasks = testSubtasks.concat(['dist-css', 'csslint', 'jshint', 'jscs', 'qunit']); } // Skip HTML validation if running a different subset of the test suite if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'validate-html') { |
