1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

fix some tests

This commit is contained in:
Bruno Windels
2019-03-15 09:57:26 +01:00
parent 955ec14db9
commit 0b8196343f
2 changed files with 12 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ const ReactDOM = require("react-dom");
const TestUtils = require('react-addons-test-utils');
const expect = require('expect');
import sinon from 'sinon';
import { EventEmitter } from "events";
const sdk = require('matrix-react-sdk');
@@ -46,8 +47,14 @@ const WrappedMessagePanel = React.createClass({
};
},
getInitialState: function() {
return {
resizeNotifier: new EventEmitter(),
};
},
render: function() {
return <MessagePanel room={room} {...this.props} />;
return <MessagePanel room={room} {...this.props} resizeNotifier={this.state.resizeNotifier} />;
},
});