Skip to content

Commit

Permalink
switched to jsdom
Browse files Browse the repository at this point in the history
  • Loading branch information
zackify committed Sep 11, 2015
1 parent 5442488 commit 7c137cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "legit-tests",
"version": "0.1.0",
"version": "0.1.1",
"description": "a chainable testing library for React",
"main": "lib/legit-tests.js",
"scripts": {
Expand Down Expand Up @@ -34,9 +34,9 @@
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"expect": "^1.8.0",
"jsdom": "^6.3.0",
"mocha": "^2.2.5",
"mocha-babel": "^3.0.0",
"node-jsdom": "^3.1.5",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
Expand Down
2 changes: 1 addition & 1 deletion tests/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function propagateToGlobal (window) {
}
}

var jsdom = require('node-jsdom');
var jsdom = require('jsdom');

var doc = jsdom.jsdom('<!doctype html><html><body></body></html>');
var win = doc.defaultView;
Expand Down

0 comments on commit 7c137cb

Please sign in to comment.