Skip to content

Commit

Permalink
test: remove .only from test case
Browse files Browse the repository at this point in the history
  • Loading branch information
rifont committed Oct 30, 2024
1 parent 8651ab6 commit 38704e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/framework/src/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down

0 comments on commit 38704e4

Please sign in to comment.