diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-04-26 19:33:05 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-04-27 22:44:47 +0200 |
commit | ab407258795bfa05756b009058757f8b42aa9c53 (patch) | |
tree | f96c0057a86c7d53deae69dd442ae55311263ee8 /Gruntfile.js | |
parent | ff18d8e2060ae7c15c7694dc6bcbbeb9cbfbdaa4 (diff) | |
download | jquery-ab407258795bfa05756b009058757f8b42aa9c53.tar.gz jquery-ab407258795bfa05756b009058757f8b42aa9c53.zip |
Core: Test all factory use cases from intro.js
There is a lot of logic in intro.js; now we test four cases:
1. (implicitly, via QUnit tests) A real browser with window being the global
2. Browserify where there are both global & window variables.
3. Node with jsdom where window is passed manually to the jQuery factory.
4. Pure Node with incorrect window passed; jQuery should throw then.
Previously the second & fourth case was not tested and the third was tested
in a way that interfered with the main test environment.
We now also test if in the Browserify case we're not creating a jQuery global
by default.
Fixes gh-2181
Closes gh-2234
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 4cbd9e2a4..b5482829b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -158,9 +158,9 @@ module.exports = function( grunt ) { grunt.registerTask( "lint", [ "jsonlint", "jshint", "jscs" ] ); - grunt.registerTask( "test_fast", [ "node_smoke_test" ] ); + grunt.registerTask( "test_fast", [ "node_smoke_tests" ] ); - grunt.registerTask( "test", [ "test_fast", "promises-aplus-tests" ] ); + grunt.registerTask( "test", [ "test_fast", "promises_aplus_tests" ] ); // Short list as a high frequency watch task grunt.registerTask( "dev", [ "build:*:*", "lint", "uglify", "remove_map_comment", "dist:*" ] ); |