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 --- .../fetchers/thematics/fetch-thematic.test.ts | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/services/graphql/fetchers/thematics/fetch-thematic.test.ts (limited to 'src/services/graphql/fetchers/thematics/fetch-thematic.test.ts') diff --git a/src/services/graphql/fetchers/thematics/fetch-thematic.test.ts b/src/services/graphql/fetchers/thematics/fetch-thematic.test.ts new file mode 100644 index 0000000..bf6495a --- /dev/null +++ b/src/services/graphql/fetchers/thematics/fetch-thematic.test.ts @@ -0,0 +1,23 @@ +import { describe, expect, it } from '@jest/globals'; +import { wpThematicsFixture } from '../../../../../tests/fixtures'; +import { fetchThematic } from './fetch-thematic'; + +describe('fetch-thematic', () => { + it('returns a thematic by slug', async () => { + const result = await fetchThematic(wpThematicsFixture[2].slug); + + expect.assertions(1); + + expect(result).toStrictEqual(wpThematicsFixture[2]); + }); + + it('rejects with an error when the slug does not exist', async () => { + const slug = '/inexistent-slug'; + + expect.assertions(1); + + await expect(async () => fetchThematic(slug)).rejects.toEqual( + new Error(`No thematic found for the following slug ${slug}.`) + ); + }); +}); -- cgit v1.2.3