diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-02-10 12:57:49 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-02-10 12:57:49 +0100 |
commit | c7431c7793f7605250807f91bee7c9ddcbaeb91b (patch) | |
tree | f9a5810d0631eade4837974756c6c9ab4b91cca5 /build | |
parent | 991e3f3e2a3c81944c9d9e35ed52b0eb7a4bb1c9 (diff) | |
download | jquery-c7431c7793f7605250807f91bee7c9ddcbaeb91b.tar.gz jquery-c7431c7793f7605250807f91bee7c9ddcbaeb91b.zip |
Build: Drop testing on jsdom with Node 0.10 & 0.12
Fixes gh-2841
Diffstat (limited to 'build')
-rw-r--r-- | build/tasks/install_old_jsdom.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/build/tasks/install_old_jsdom.js b/build/tasks/install_old_jsdom.js deleted file mode 100644 index 271e0cbe0..000000000 --- a/build/tasks/install_old_jsdom.js +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = function( grunt ) { - - "use strict"; - - // Run this task to run jsdom-related tests on Node.js < 1.0.0. - grunt.registerTask( "old_jsdom", function() { - if ( !/^v0/.test( process.version ) ) { - console.warn( "The old_jsdom task doesn\'t need to be run in io.js or new Node.js" ); - return; - } - - // Use npm on the command-line - // There is no local npm - grunt.util.spawn( { - cmd: "npm", - args: [ "install", "jsdom@3" ], - opts: { stdio: "inherit" } - }, this.async() ); - } ); -}; |