Skip to content

Commit

Permalink
Remove deprectated eact-addons-test-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
JedWatson committed Sep 9, 2017
1 parent 2c12608 commit d02e71c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -48,7 +48,6 @@
"nyc": "^11.1.0",
"react": "^15.5.0",
"react-addons-shallow-compare": "^15.5.0",
"react-addons-test-utils": "^15.5.0",
"react-dom": "^15.5.0",
"react-gravatar": "^2.4.5",
"react-highlight-words": "^0.8.1",
Expand Down
2 changes: 1 addition & 1 deletion test/Async-test.js
Expand Up @@ -17,7 +17,7 @@ var expect = unexpected

var React = require('react');
var ReactDOM = require('react-dom');
var TestUtils = require('react-addons-test-utils');
var TestUtils = require('react-dom/test-utils');
var sinon = require('sinon');

var Select = require('../src');
Expand Down
2 changes: 1 addition & 1 deletion test/AsyncCreatable-test.js
Expand Up @@ -14,7 +14,7 @@ var expect = unexpected

var React = require('react');
var ReactDOM = require('react-dom');
var TestUtils = require('react-addons-test-utils');
var TestUtils = require('react-dom/test-utils');
var sinon = require('sinon');
var Select = require('../src');

Expand Down
2 changes: 1 addition & 1 deletion test/Creatable-test.js
Expand Up @@ -15,7 +15,7 @@ var expect = unexpected

var React = require('react');
var ReactDOM = require('react-dom');
var TestUtils = require('react-addons-test-utils');
var TestUtils = require('react-dom/test-utils');
var Select = require('../src');

describe('Creatable', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/Select-test.js
Expand Up @@ -20,7 +20,7 @@ jsdomHelper();

var React = require('react');
var ReactDOM = require('react-dom');
var TestUtils = require('react-addons-test-utils');
var TestUtils = require('react-dom/test-utils');

var Select = require('../src').default;

Expand Down
2 changes: 1 addition & 1 deletion test/Value-test.js
Expand Up @@ -16,7 +16,7 @@ var expect = unexpected

var React = require('react');
var ReactDOM = require('react-dom');
var TestUtils = require('react-addons-test-utils');
var TestUtils = require('react-dom/test-utils');

var OPTION = { label: 'TEST-LABEL', value: 'TEST-VALUE' };

Expand Down

0 comments on commit d02e71c

Please sign in to comment.