Fixed image attachment e2e cypress test (#23445)

Этот коммит содержится в:
Harshil Sharma
2023-05-22 10:50:05 +05:30
коммит произвёл GitHub
родитель cfa5be4d3e
Коммит 0cb3a406da

Просмотреть файл

@@ -97,7 +97,7 @@ describe('Image attachment', () => {
// # File thumbnail should have correct dimensions // # File thumbnail should have correct dimensions
verifyFileThumbnail({ verifyFileThumbnail({
filename, filename,
actualImage: {height: 151, width: 955}, actualImage: {height: 144, width: 906},
}); });
}); });
@@ -117,7 +117,7 @@ describe('Image attachment', () => {
// # File thumbnail should have correct dimensions // # File thumbnail should have correct dimensions
verifyFileThumbnail({ verifyFileThumbnail({
filename, filename,
actualImage: {height: 151, width: 955}, actualImage: {height: 144, width: 906},
clickPreview: () => cy.uiGetFileThumbnail(filename).click(), clickPreview: () => cy.uiGetFileThumbnail(filename).click(),
}); });