mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 01:35:49 +03:00
fix last remaining broken test
This commit is contained in:
parent
ae2d9941ff
commit
4997676f5d
1 changed files with 2 additions and 2 deletions
|
@ -436,8 +436,8 @@ describe('MessagePanel', function() {
|
|||
const rm = res.find('.mx_RoomView_myReadMarker_container').getDOMNode();
|
||||
|
||||
const rows = res.find('.mx_RoomView_MessageList').children();
|
||||
expect(rows.length).toEqual(6);
|
||||
expect(rm.previousSibling).toEqual(rows.at(4).getDOMNode());
|
||||
expect(rows.length).toEqual(7); // 6 events + the NewRoomIntro
|
||||
expect(rm.previousSibling).toEqual(rows.at(5).getDOMNode());
|
||||
|
||||
// read marker should be hidden given props and at the last event
|
||||
expect(isReadMarkerVisible(rm)).toBeFalsy();
|
||||
|
|
Loading…
Reference in a new issue