Skip to content

Commit

Permalink
Fix test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Oct 13, 2015
1 parent 1d83221 commit b6381a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion examples/01 Dustbin/Single Target/__tests__/Box-test.js
Expand Up @@ -15,7 +15,8 @@ describe('Box', () => {
// Render with one set of props and test
let root = TestUtils.renderIntoDocument(
<OriginalBox name='test'
connectDragSource={identity} />
connectDragSource={identity}
isDragging={false} />
);
let div = TestUtils.findRenderedDOMComponentWithTag(root, 'div');
expect(div.props.style.opacity).toEqual(1);
Expand Down
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -63,12 +63,12 @@
"file-loader": "^0.8.1",
"glob": "^4.3.5",
"html-loader": "^0.2.3",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.12",
"karma-cli": "0.0.4",
"karma-mocha": "^0.1.10",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^1.5.1",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.1.1",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"less": "^2.2.0",
"less-loader": "^2.0.0",
"marked": "^0.3.2",
Expand Down

0 comments on commit b6381a6

Please sign in to comment.