-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the waitTime and maxAttempts configurable with env variables
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
INCLUDE_CASES=00_00_01-sync.js,01_01_01-pre_orchid_2wp.js | ||
RUN_EACH_TEST_FILE_THESE_TIMES=1 | ||
RUN_ALL_TESTS_THESE_TIMES=1 | ||
|
||
# Sets the maximum wait time in seconds for a block confirmation before timing out | ||
# This parameter helps in defining how long to wait for a block of within a test to execute before considering the test as failed due to timeout. | ||
# Leave empty to use the default value set within the test framework. | ||
WAIT_TIME_DEFAULT= | ||
|
||
# Sets the maximum number of attempts for a test. | ||
# This is used to specify how many times a test should be retried upon failure before being marked as failed. | ||
# Leave empty to use the default value set within the test framework. | ||
MAX_ATTEMPTS_DEFAULT= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters