From f4bc7024016cddff83d8f89bb34de8c472ae8aee Mon Sep 17 00:00:00 2001 From: Dimitri Mitropoulos Date: Mon, 7 Mar 2022 11:57:20 -0800 Subject: [PATCH] fixes it.each malformed usage (#4544) --- .../app/ui/redux/modules/__tests__/global.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/insomnia-app/app/ui/redux/modules/__tests__/global.test.ts b/packages/insomnia-app/app/ui/redux/modules/__tests__/global.test.ts index f6de229fb6..7db92316bd 100644 --- a/packages/insomnia-app/app/ui/redux/modules/__tests__/global.test.ts +++ b/packages/insomnia-app/app/ui/redux/modules/__tests__/global.test.ts @@ -183,11 +183,11 @@ describe('global', () => { expect(store.getActions()).toEqual([expectedEvent]); }); - it.each( + it.each([ 'something', null, undefined, - )('should go to home if initialized with an unsupported value: %s', async activity => { + ])('should go to home if initialized with an unsupported value: %s', async activity => { const settings = createSettings(true); const store = mockStore({ global: {},