diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-19 11:21:24 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-19 11:21:24 -0400 |
commit | 0e8d9dde20e6bb4481fbfa94a2066125179066b0 (patch) | |
tree | 11d6f6bd515d85204c33b0d979cfcc2072461b33 /grunt.js | |
parent | 266cc84013c7c4d57771b2e4d0cdac3763a6764b (diff) | |
download | jquery-ui-0e8d9dde20e6bb4481fbfa94a2066125179066b0.tar.gz jquery-ui-0e8d9dde20e6bb4481fbfa94a2066125179066b0.zip |
Tests: Lint.
Diffstat (limited to 'grunt.js')
-rw-r--r-- | grunt.js | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -271,9 +271,8 @@ grunt.initConfig({ // TODO remove items from this list once rewritten return !( /(effects.core|mouse|datepicker|draggable|droppable|resizable|selectable|sortable)\.js$/ ).test( file ); }), - grunt: "grunt.js" - // TODO enabled once fixed up - // tests: "tests/unit/**/*.js" + grunt: "grunt.js", + tests: "tests/unit/**/*.js" }, csslint: { // nothing: [] @@ -343,7 +342,9 @@ grunt.initConfig({ tests: { options: extend({ browser: true, - jquery: true + jquery: true, + // TODO: this is only for document.write() + evil: true }, defaults ), // TODO: don't create so many globals in tests globals: { |