Skip to content

Commit f316491

Browse files
committed
MQE-3124: fix unbalanced parallel groups
1 parent d0d55e6 commit f316491

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/Magento/FunctionalTestingFramework/Test/Objects/TestObject.php

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,20 @@ class TestObject
2121

2222
const TEST_ACTION_WEIGHT = [
2323
'waitForPageLoad' => 1500,
24-
'amOnPage' => 1000,
24+
'amOnPage' => 1500,
2525
'waitForLoadingMaskToDisappear' => 500,
2626
'wait' => self::WAIT_TIME_ATTRIBUTE,
27+
'waitForAjaxLoad' => 500,
28+
'waitForJS' => 500,
2729
'comment' => 5,
2830
'assertCount' => 5,
29-
'closeAdminNotification' => 10
31+
'closeAdminNotification' => 10,
32+
'magentoCLI' => 1000,
33+
'magentoCron' => 3000,
34+
'createData' => 500,
35+
'deleteData' => 100,
36+
'updateData' => 100,
37+
'getOTP' => 200,
3038
];
3139

3240
/**

0 commit comments

Comments
 (0)