From 568bce98634953708c8939fb740e89ca46e13a1d Mon Sep 17 00:00:00 2001 From: Jeff Raymakers Date: Mon, 7 Oct 2024 20:11:09 -0700 Subject: [PATCH] disable interrupt test (nondeterministic) --- bindings/test/pending.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/test/pending.test.ts b/bindings/test/pending.test.ts index 04f46ae..ec575cd 100644 --- a/bindings/test/pending.test.ts +++ b/bindings/test/pending.test.ts @@ -66,7 +66,7 @@ suite('pending', () => { } }); }); - test('interrupt', async () => { + test.skip('interrupt', async () => { // interrupt does not appear to be entirely deterministic await withConnection(async (connection) => { const prepared = await duckdb.prepare(connection, 'select count(*) as count from range(10_000)'); try {