aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/handlers/topics/topic.handler.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/msw/handlers/topics/topic.handler.ts')
-rw-r--r--tests/msw/handlers/topics/topic.handler.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/msw/handlers/topics/topic.handler.ts b/tests/msw/handlers/topics/topic.handler.ts
new file mode 100644
index 0000000..5df00ea
--- /dev/null
+++ b/tests/msw/handlers/topics/topic.handler.ts
@@ -0,0 +1,21 @@
+import { type ExecutionResult, graphql as executeGraphql } from 'graphql';
+import { HttpResponse, graphql } from 'msw';
+import type { TopicResponse } from '../../../../src/services/graphql';
+import { wpTopicsFixture } from '../../../fixtures';
+import { schema } from '../../schema';
+
+export const topicHandler = graphql.query<
+ TopicResponse,
+ Record<'slug', string>
+>('Topic', async ({ query, variables }) => {
+ const { data, errors } = (await executeGraphql({
+ schema,
+ source: query,
+ variableValues: variables,
+ rootValue: {
+ topic: wpTopicsFixture.find((wpTopic) => wpTopic.slug === variables.slug),
+ },
+ })) as ExecutionResult<TopicResponse>;
+
+ return HttpResponse.json({ data, errors });
+});