mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
unbreak tests
This commit is contained in:
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…
x
Reference in New Issue
Block a user