We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7ae50d commit 387dd3aCopy full SHA for 387dd3a
apps/api/src/__tests__/snips/billing.test.ts
@@ -5,7 +5,9 @@ const sleepForBatchBilling = () => sleep(20000);
5
6
beforeAll(async () => {
7
// Wait for previous test runs to stop billing processing
8
- await sleep(40000);
+ if (!process.env.TEST_SUITE_SELF_HOSTED) {
9
+ await sleep(40000);
10
+ }
11
}, 50000);
12
13
describe("Billing tests", () => {
0 commit comments