From aeb7ff8bc9d6fc04cbadd063cdb7ab84b8682900 Mon Sep 17 00:00:00 2001 From: nedsalk Date: Sun, 7 Jul 2024 16:45:37 +0200 Subject: [PATCH] add `.only` to be explicit about it --- .../account/src/test-utils/launchNode-singular-test.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/account/src/test-utils/launchNode-singular-test.test.ts b/packages/account/src/test-utils/launchNode-singular-test.test.ts index 7300edf680..f11b675797 100644 --- a/packages/account/src/test-utils/launchNode-singular-test.test.ts +++ b/packages/account/src/test-utils/launchNode-singular-test.test.ts @@ -12,7 +12,7 @@ describe('launchNode-singular-test', () => { afterAll(async () => { await expect(fetch(killedNodeUrl)).rejects.toThrow('fetch failed'); }); - test('synchronous cleanup kills node before test runner exits', async () => { + test.only('synchronous cleanup kills node before test runner exits', async () => { const { cleanup, url } = await launchNode(); killedNodeUrl = url; cleanup();