From 07d2f6c9f00da34950c7633c73ced288a4200ad2 Mon Sep 17 00:00:00 2001 From: nedsalk Date: Sun, 7 Jul 2024 16:37:11 +0200 Subject: [PATCH] oops, remove `test.only` --- packages/account/src/test-utils/launchNode.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/account/src/test-utils/launchNode.test.ts b/packages/account/src/test-utils/launchNode.test.ts index 44f1fe08b7..163d45fde9 100644 --- a/packages/account/src/test-utils/launchNode.test.ts +++ b/packages/account/src/test-utils/launchNode.test.ts @@ -128,7 +128,7 @@ describe('launchNode', () => { cleanup(); }); - test.only('calling cleanup multiple times does not retry process killing', async () => { + test('calling cleanup multiple times does not retry process killing', async () => { const killSpy = vi.spyOn(process, 'kill'); const { cleanup } = await launchNode();