forked from jquery/jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: use different versions of jsdom for Node and iojs testing
Fixes jquerygh-2266
- Loading branch information
Showing
3 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module.exports = function( grunt ) { | ||
grunt.registerTask( "jsdom", function() { | ||
var current, | ||
pkg = grunt.config( "pkg" ), | ||
version = pkg.jsdomVersions[ | ||
|
||
// Unfortunately, this is currently the only | ||
// way to tell the difference between Node and iojs | ||
/^v0/.test( process.version ) ? "node" : "iojs" | ||
]; | ||
|
||
try { | ||
current = require( "jsdom/package.json" ).version; | ||
if ( current === version ) { | ||
return; | ||
} | ||
} catch ( e ) {} | ||
|
||
// Use npm on the command-line | ||
// There is no local npm | ||
grunt.util.spawn( { | ||
cmd: "npm", | ||
args: [ "install", "jsdom@" + version ], | ||
opts: { stdio: "inherit" } | ||
}, this.async() ); | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters