From 22a05daa6bc4a9d0847f79000e1c7e011ee095b1 Mon Sep 17 00:00:00 2001 From: Tucker Whitehouse Date: Tue, 4 Jun 2024 09:42:57 -0400 Subject: [PATCH] ETSWORK-19907 "workgird" => "workgrid" --- .../workgrid-client-react/src/client-react.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/workgrid-client-react/src/client-react.test.ts b/packages/workgrid-client-react/src/client-react.test.ts index 674ce8c..6c8ec11 100644 --- a/packages/workgrid-client-react/src/client-react.test.ts +++ b/packages/workgrid-client-react/src/client-react.test.ts @@ -70,7 +70,7 @@ describe('@workgrid/client-react', () => { }) describe('useWorkgridClient', () => { - test('will throw if used outside a WorkgirdProvider', () => { + test('will throw if used outside a WorkgridProvider', () => { const { result } = renderHook(() => useWorkgridClient(), { wrapper: undefined }) expect(result.error).toMatchInlineSnapshot(`[Error: useWorkgridClient must be within a WorkgridProvider]`) @@ -84,7 +84,7 @@ describe('@workgrid/client-react', () => { }) describe('useQuery', () => { - test('will throw if used outside a WorkgirdProvider', () => { + test('will throw if used outside a WorkgridProvider', () => { const { result } = renderHook(() => useQuery(['getNotification', { spaceId: 'space-id', id: '1234' }]), { wrapper: undefined, }) @@ -107,7 +107,7 @@ describe('@workgrid/client-react', () => { }) describe('useCustomQuery', () => { - test('will throw if used outside a WorkgirdProvider', () => { + test('will throw if used outside a WorkgridProvider', () => { const { result } = renderHook(() => useCustomQuery('query-key'), { wrapper: undefined }) expect(result.error).toMatchInlineSnapshot(`[Error: useCustomQuery must be within a WorkgridProvider]`) @@ -128,7 +128,7 @@ describe('@workgrid/client-react', () => { }) describe('useMutation', () => { - test('will throw if used outside a WorkgirdProvider', () => { + test('will throw if used outside a WorkgridProvider', () => { const { result } = renderHook(() => useMutation('notificationViewed'), { wrapper: undefined }) expect(result.error).toMatchInlineSnapshot(`[Error: useMutation must be within a WorkgridProvider]`) @@ -153,7 +153,7 @@ describe('@workgrid/client-react', () => { }) describe('useCustomMutation', () => { - test('will throw if used outside a WorkgirdProvider', () => { + test('will throw if used outside a WorkgridProvider', () => { const { result } = renderHook(() => useCustomMutation('mutation-key'), { wrapper: undefined }) expect(result.error).toMatchInlineSnapshot(`[Error: useCustomMutation must be within a WorkgridProvider]`)