Skip flaky test (#2416)

This commit is contained in:
Josh Mock
2024-10-28 11:46:10 -05:00
committed by GitHub
parent e287c1edd9
commit 20ac2a637e

View File

@ -1819,6 +1819,7 @@ test('Flush interval', t => {
}) })
server.stop() server.stop()
t.end()
}) })
test(`flush timeout does not lock process when flushInterval is greater than server timeout`, async t => { 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() server.stop()
t.end()
}) })
test(`flush timeout does not lock process when flushInterval is equal to server timeout`, async t => { 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() server.stop()
t.end()
}) })
t.end() t.end()