mirror of https://github.com/vector-im/riot-web
unbreak tests
parent
8f75bce29e
commit
334564c814
|
@ -92,7 +92,7 @@ var TimelinePanel = React.createClass({
|
|||
timelineCap: React.PropTypes.number,
|
||||
|
||||
// classname to use for the messagepanel
|
||||
className: React.PropTypes.string.isRequired,
|
||||
className: React.PropTypes.string,
|
||||
},
|
||||
|
||||
statics: {
|
||||
|
@ -106,6 +106,7 @@ var TimelinePanel = React.createClass({
|
|||
getDefaultProps: function() {
|
||||
return {
|
||||
timelineCap: 250,
|
||||
className: 'mx_RoomView_messagePanel',
|
||||
};
|
||||
},
|
||||
|
||||
|
|
|
@ -61,10 +61,10 @@ describe('TimelinePanel', function() {
|
|||
|
||||
timeline = new jssdk.EventTimeline(ROOM_ID);
|
||||
room = sinon.createStubInstance(jssdk.Room);
|
||||
room.getPendingEvents.returns([]);
|
||||
|
||||
timelineSet = sinon.createStubInstance(jssdk.EventTimelineSet);
|
||||
timelineSet.getLiveTimeline.returns(timeline);
|
||||
timelineSet.getPendingEvents.returns([]);
|
||||
timelineSet.room = room;
|
||||
|
||||
client = peg.get();
|
||||
|
|
Loading…
Reference in New Issue