From 058b0411603da1afbc1fb283294b04d811201b9e Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Tue, 4 Feb 2025 10:08:33 -0700 Subject: [PATCH] Fix test description --- src/react/hooks/__tests__/useSuspenseFragment.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/react/hooks/__tests__/useSuspenseFragment.test.tsx b/src/react/hooks/__tests__/useSuspenseFragment.test.tsx index a38c3f0fceb..108333917b9 100644 --- a/src/react/hooks/__tests__/useSuspenseFragment.test.tsx +++ b/src/react/hooks/__tests__/useSuspenseFragment.test.tsx @@ -1805,7 +1805,7 @@ describe.skip("type tests", () => { } }); - test("returns TData | null when from is null", () => { + test("returns null when from is null", () => { type Data = { foo: string }; type Vars = Record; const fragment: TypedDocumentNode = gql``;