From 18df52feb46a396fdefa290cdc25130b203511e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:57:58 -0500 Subject: [PATCH] [Backport 8.16] Skip flaky test (#2419) Co-authored-by: Josh Mock --- test/unit/helpers/bulk.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/unit/helpers/bulk.test.ts b/test/unit/helpers/bulk.test.ts index 1f2ddf575..94db5c5e4 100644 --- a/test/unit/helpers/bulk.test.ts +++ b/test/unit/helpers/bulk.test.ts @@ -1819,6 +1819,7 @@ test('Flush interval', t => { }) server.stop() + t.end() }) test(`flush timeout does not lock process when flushInterval is greater than server timeout`, async t => { @@ -1868,6 +1869,7 @@ test('Flush interval', t => { }) server.stop() + t.end() }) test(`flush timeout does not lock process when flushInterval is equal to server timeout`, async t => { @@ -1917,6 +1919,7 @@ test('Flush interval', t => { }) server.stop() + t.end() }) t.end()