From 5255dfe31463abdde0856013cdf35b88d0196a6c Mon Sep 17 00:00:00 2001 From: Michael Bromley Date: Tue, 3 Dec 2024 11:54:24 +0100 Subject: [PATCH] docs(testing): Fix doc block syntax --- packages/testing/src/simple-graphql-client.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/testing/src/simple-graphql-client.ts b/packages/testing/src/simple-graphql-client.ts index cb8010b85e..66d236dfc9 100644 --- a/packages/testing/src/simple-graphql-client.ts +++ b/packages/testing/src/simple-graphql-client.ts @@ -224,6 +224,7 @@ export class SimpleGraphQLClient { * mutation, with `null` as the value for each `Upload` field. * * @example + * ```ts * // Testing a custom mutation: * const result = await client.fileUploadMutation({ * mutation: gql` @@ -243,6 +244,7 @@ export class SimpleGraphQLClient { * } * }) * }); + * ``` */ async fileUploadMutation(options: { mutation: DocumentNode;