We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da16d6 commit 5171102Copy full SHA for 5171102
test/index.js
@@ -33,9 +33,9 @@ describe('library', function () {
33
componentDidMount() {
34
const { style } = findDOMNode(this);
35
36
- assert.equal(parseInt(domNode.style.width, 10), defaultValue);
+ assert.equal(parseInt(style.width, 10), defaultValue);
37
this.state.anim.setValue(updatedValue);
38
- assert.equal(parseInt(domNode.style.width, 10), updatedValue);
+ assert.equal(parseInt(style.width, 10), updatedValue);
39
done();
40
}
41
0 commit comments