aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/handlers/posts/post.handler.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-11-27 19:40:40 +0100
committerArmand Philippot <git@armandphilippot.com>2023-11-28 18:04:24 +0100
commitfb749e8befb2dcdc266c2e8b7ef7c9001947143a (patch)
tree80ae62cd0a699d4feb14fe2a239b4fe317a400a0 /tests/msw/handlers/posts/post.handler.ts
parentab81df7f3d317281a05caec18e2cfd89dc26bc7a (diff)
test(services): add tests for posts fetchers
Diffstat (limited to 'tests/msw/handlers/posts/post.handler.ts')
-rw-r--r--tests/msw/handlers/posts/post.handler.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/msw/handlers/posts/post.handler.ts b/tests/msw/handlers/posts/post.handler.ts
new file mode 100644
index 0000000..4abdfed
--- /dev/null
+++ b/tests/msw/handlers/posts/post.handler.ts
@@ -0,0 +1,21 @@
+import { type ExecutionResult, graphql as executeGraphql } from 'graphql';
+import { HttpResponse, graphql } from 'msw';
+import type { PostResponse } from '../../../../src/services/graphql';
+import { wpPostsFixture } from '../../../fixtures';
+import { schema } from '../../schema';
+
+export const postHandler = graphql.query<PostResponse, Record<'slug', string>>(
+ 'Post',
+ async ({ query, variables }) => {
+ const { data, errors } = (await executeGraphql({
+ schema,
+ source: query,
+ variableValues: variables,
+ rootValue: {
+ post: wpPostsFixture.find((wpPost) => wpPost.slug === variables.slug),
+ },
+ })) as ExecutionResult<PostResponse>;
+
+ return HttpResponse.json({ data, errors });
+ }
+);