From 38704e4b899327b52388002b41566375106d2138 Mon Sep 17 00:00:00 2001 From: Richard Fontein <32132657+rifont@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:26:46 +0100 Subject: [PATCH] test: remove .only from test case --- packages/framework/src/client.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/src/client.test.ts b/packages/framework/src/client.test.ts index 26554e3811e..2dd70587c12 100644 --- a/packages/framework/src/client.test.ts +++ b/packages/framework/src/client.test.ts @@ -1287,7 +1287,7 @@ describe('Novu Client', () => { expect(mockFn).toHaveBeenCalledTimes(0); }); - it.only('should NOT log anything after executing the provided stepId', async () => { + it('should NOT log anything after executing the provided stepId', async () => { const mockFn = vi.fn(); const spyConsoleLog = vi.spyOn(console, 'log'); const newWorkflow = workflow('test-workflow', async ({ step }) => {