Skip to content

Commit a3e7af2

Browse files
update etalon
1 parent 94cc7aa commit a3e7af2

5 files changed

+4
-4
lines changed

apps/demos/testing/widgets/form/CustomomizeItem.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils'
66
fixture('Form.CustomizeItem')
77
.page('http://localhost:8080/')
88
.before(async (ctx) => {
9-
ctx.initialWindowSize = [900, 600];
9+
ctx.initialWindowSize = [900, 900];
1010
});
1111

1212
runManualTest('Form', 'CustomizeItem', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
Loading

apps/demos/utils/visual-tests/matrix-test-helper.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const waitForAngularLoading = ClientFunction(() => new Promise((resolve)
4242
const demoAppIntervalHandle = setInterval(() => {
4343
const demoApp = document.querySelector('demo-app');
4444
if ((demoApp && demoApp.innerText !== 'Loading...') || demoAppCounter === 120) {
45-
setTimeout(resolve, 1000);
45+
setTimeout(resolve, 2000);
4646
clearInterval(demoAppIntervalHandle);
4747
}
4848
demoAppCounter += 1;
@@ -456,8 +456,8 @@ export function runManualTestCore(
456456

457457
export const forceContentAppears = async (t) => {
458458
await t.click('body', {
459-
offsetX: -1,
460-
offsetY: -1,
459+
offsetX: 1,
460+
offsetY: 1,
461461
});
462462
};
463463

0 commit comments

Comments
 (0)