Skip to content

Commit 2feded7

Browse files
author
marker dao ®
committed
increase
1 parent 71d6148 commit 2feded7

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

apps/demos/testing/widgets/accordion/Accordion.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runManualTest('Accordion', 'Overview', ['jQuery', 'React', 'Angular', 'Vue'], (t
1616
test('Custom Overview Appearance', async (t) => {
1717
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1818

19-
await t.wait(2000);
19+
await t.wait(3000);
2020

2121
await t
2222
.click($(`.${ITEM_TITLE_CLASS}`).nth(1))

apps/demos/testing/widgets/common/EditorAppearanceVariants.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runManualTest('Common', 'EditorAppearanceVariants', ['React', 'Vue', 'Angular',
1414
test('EditorAppearanceVariants', async (t) => {
1515
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1616

17-
await t.wait(2000);
17+
await t.wait(3000);
1818

1919
const SELECTBOX_CLASS = 'dx-selectbox';
2020
const stylingModes = ['outlined', 'filled', 'underlined'];

apps/demos/testing/widgets/dropdownbox/MultipleSelection.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runManualTest('DropDownBox', 'MultipleSelection', ['jQuery', 'React', 'Vue', 'An
1414
const DROP_DOWN_BOX_CLASS = 'dx-dropdownbox';
1515
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1616

17-
await t.wait(2000);
17+
await t.wait(3000);
1818

1919
await t
2020
.click($(`.${DROP_DOWN_BOX_CLASS}`).nth(0))

apps/demos/testing/widgets/dropdownbutton/DropDownButton.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runManualTest('DropDownButton', 'Overview', ['jQuery', 'React', 'Vue', 'Angular'
1616
test('Custom Overview Appearance', async (t) => {
1717
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1818

19-
await t.wait(2000);
19+
await t.wait(3000);
2020

2121
await t
2222
.click($(`.${DROP_DOWN_BUTTON_CLASS}`).nth(0))

apps/demos/testing/widgets/gauges/GaugeVariableNumberBars.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runManualTest('Gauges', 'VariableNumberOfBars', ['jQuery', 'React', 'Vue', 'Angu
1313
test('Bars visibility changing', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

16-
await t.wait(2000);
16+
await t.wait(3000);
1717

1818
const checkBoxes = $('.dx-checkbox-icon');
1919

apps/demos/testing/widgets/list/ItemDragging.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fixture('List.ItemDragging')
1111

1212
runManualTest('List', 'ItemDragging', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
1313
test('ItemDragging', async (t) => {
14-
await t.wait(2000);
14+
await t.wait(3000);
1515

1616
const REORDER_HANDLE_CLASS = 'dx-list-reorder-handle';
1717
const LIST_CLASS = 'dx-list';

apps/demos/testing/widgets/popup/Scrolling.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runManualTest('Popup', 'Scrolling', ['jQuery', 'React', 'Vue', 'Angular'], (test
1818
test('Scrolling', async (t) => {
1919
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2020

21-
await t.wait(2000);
21+
await t.wait(3000);
2222

2323
await t.click(Selector(`.${BUTTON_CLASS}`).nth(0));
2424
await testScreenshot(t, takeScreenshot, 'popup with scrollable container.png');

apps/demos/testing/widgets/sortable/kanban.test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runManualTest('Sortable', 'Kanban', ['jQuery', 'React', 'Vue', 'Angular'], (test
1818
test('Drag-n-drop kanban columns', async (t) => {
1919
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2020

21-
await t.wait(2000);
21+
await t.wait(3000);
2222

2323
await t.drag(Selector(CLASSES.listTitle).nth(0), 600, 50, { speed: 0.5 });
2424
await testScreenshot(t, takeScreenshot, 'kanban_list_drag-n-drop.png');
@@ -32,7 +32,7 @@ runManualTest('Sortable', 'Kanban', ['jQuery', 'React', 'Vue', 'Angular'], (test
3232
test('Drag-n-drop card inside the same column', async (t) => {
3333
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
3434

35-
await t.wait(2000);
35+
await t.wait(3000);
3636

3737
await t.drag(Selector(CLASSES.card).nth(3), 25, 200, { speed: 0.5 });
3838
await testScreenshot(t, takeScreenshot, 'kanban_card_drag-n-drop_same-column.png');
@@ -46,7 +46,7 @@ runManualTest('Sortable', 'Kanban', ['jQuery', 'React', 'Vue', 'Angular'], (test
4646
test('Drag-n-drop card to a different column', async (t) => {
4747
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
4848

49-
await t.wait(2000);
49+
await t.wait(3000);
5050

5151
await t.drag(Selector(CLASSES.card).nth(3), 300, 150, { speed: 0.5 });
5252
await testScreenshot(t, takeScreenshot, 'kanban_card_drag-n-drop_different-column.png');

apps/demos/testing/widgets/splitter/Overview.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runManualTest('Splitter', 'Overview', ['jQuery', 'React', 'Vue', 'Angular'], (te
1515
test('Correct Focus styles on every Item Panes', async (t) => {
1616
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1717

18-
await t.wait(2000);
18+
await t.wait(3000);
1919

2020
await t
2121
.click($(`.${PANE_CONTENT_CLASS}`).nth(0));

apps/demos/testing/widgets/tabpanel/Overview.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runManualTest('TabPanel', 'Overview', ['jQuery', 'React', 'Vue', 'Angular'], (te
1818
test('Overview', async (t) => {
1919
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2020

21-
await t.wait(2000);
21+
await t.wait(3000);
2222

2323
await t
2424
.click($(`.${OPTION_CLASS} .${SELECTBOX_CLASS}`).nth(0))

apps/demos/testing/widgets/toolbar/Adaptability.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runManualTest('Toolbar', 'Adaptability', ['jQuery', 'React', 'Vue', 'Angular'],
1919
test('Adaptability', async (t) => {
2020
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2121

22-
await t.wait(2000);
22+
await t.wait(3000);
2323

2424
await t.drag($(`.${RESIZABLE_HANDLE_RIGHT_CLASS}`), -400, 0);
2525
await testScreenshot(t, takeScreenshot, 'toolbar_multiline_mode_minimize.png');

0 commit comments

Comments
 (0)