1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

test: fix test runs to 1 (#2886)

This commit is contained in:
Mateusz Kwasniewski 2023-01-12 13:53:05 +01:00 committed by GitHub
parent 0dcf28a0f0
commit a52d3b0f77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,7 @@ const reset = (database: ITestDb) => async () => {
const toArray = <T>(x: T): [T] => [x];
const testParams = {
numRuns: 1, // Default is 100 which is not good for E2E tests
interruptAfterTimeLimit: 4000, // Default timeout in Jest 5000ms
markInterruptAsFailure: false, // When set to false, timeout during initial cases will not be considered as a failure
};