You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Verify that user can resize columns for Hash, List, Zset Keys
88
-
awaitt.expect(key.fieldWidthEnd).eql(key.fieldWidthStart-key.offsetX,`Field is not resized for ${key.type} key`);
80
+
awaitt.expect(key.fieldWidthEnd).within(key.fieldWidthStart-key.offsetX-5,key.fieldWidthStart-key.offsetX+5,`Field is not resized for ${key.type} key`);
89
81
}
90
82
91
83
// Verify that resize saved when switching between pages
awaitt.expect(field.clientWidth).eql(keys[0].fieldWidthEnd,'Resize context not saved for key when switching between pages');
87
+
awaitt.expect(field.clientWidth).within(keys[0].fieldWidthEnd-5,keys[0].fieldWidthEnd+5,'Resize context not saved for key when switching between pages');
0 commit comments