From f564d181bc428e25a02bf1d98c4449a6b3eb8e9e Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 28 Nov 2023 16:18:03 +0100 Subject: fix(services,types): make coherent Thematic type and query * some nodes was queried but missing in the Thematic type and vice versa, it is now fixed * add tests for all thematics fetchers --- tests/msw/handlers/thematics/thematic.handler.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/msw/handlers/thematics/thematic.handler.ts (limited to 'tests/msw/handlers/thematics/thematic.handler.ts') diff --git a/tests/msw/handlers/thematics/thematic.handler.ts b/tests/msw/handlers/thematics/thematic.handler.ts new file mode 100644 index 0000000..1e7d129 --- /dev/null +++ b/tests/msw/handlers/thematics/thematic.handler.ts @@ -0,0 +1,23 @@ +import { type ExecutionResult, graphql as executeGraphql } from 'graphql'; +import { HttpResponse, graphql } from 'msw'; +import type { ThematicResponse } from '../../../../src/services/graphql'; +import { wpThematicsFixture } from '../../../fixtures'; +import { schema } from '../../schema'; + +export const thematicHandler = graphql.query< + ThematicResponse, + Record<'slug', string> +>('Thematic', async ({ query, variables }) => { + const { data, errors } = (await executeGraphql({ + schema, + source: query, + variableValues: variables, + rootValue: { + thematic: wpThematicsFixture.find( + (wpThematic) => wpThematic.slug === variables.slug + ), + }, + })) as ExecutionResult; + + return HttpResponse.json({ data, errors }); +}); -- cgit v1.2.3