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
@@ -82,14 +77,14 @@ test.only('Resize of columns in Hash, List, Zset Key details', async t => {
82
77
// Remember last column width
83
78
key.fieldWidthEnd=awaitfield.clientWidth;
84
79
// Verify that user can resize columns for Hash, List, Zset Keys
85
-
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`);
86
81
}
87
82
88
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