diff --git a/grunt/tasks/test.js b/grunt/tasks/test.js index 81ad07730..d2c5a1802 100644 --- a/grunt/tasks/test.js +++ b/grunt/tasks/test.js @@ -3,6 +3,10 @@ module.exports = function test (grunt) { grunt.registerTask('test', 'run jshint, qunit source w/ coverage, and validate HTML', ['jshint', 'connect:testServer', 'qunit:noMoment', 'qunit:globals', 'test-dist', 'htmllint']); + grunt.registerTask('unittest', 'Just unit test the dist without all the fluff', + ['connect:testServer', 'test-dist']); + + grunt.registerTask('prep-commonjs-test', 'run commonjs config build and browserify to prep for commonjs test', ['commonjs', 'browserify:commonjs']); diff --git a/index.html b/index.html index 414942a78..24998365f 100644 --- a/index.html +++ b/index.html @@ -2071,7 +2071,7 @@