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 --- .../thematics/fetch-thematics-list.test.ts | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/services/graphql/fetchers/thematics/fetch-thematics-list.test.ts (limited to 'src/services/graphql/fetchers/thematics/fetch-thematics-list.test.ts') diff --git a/src/services/graphql/fetchers/thematics/fetch-thematics-list.test.ts b/src/services/graphql/fetchers/thematics/fetch-thematics-list.test.ts new file mode 100644 index 0000000..d52262d --- /dev/null +++ b/src/services/graphql/fetchers/thematics/fetch-thematics-list.test.ts @@ -0,0 +1,26 @@ +import { afterEach, describe, expect, it } from '@jest/globals'; +import { wpThematicsFixture } from '../../../../../tests/fixtures'; +import { fetchThematicsList } from './fetch-thematics-list'; + +describe('fetch-thematics-list', () => { + afterEach(() => { + window.history.replaceState({}, '', '/'); + }); + + it('returns the WordPress thematics using GraphQL', async () => { + const result = await fetchThematicsList({}); + + expect.assertions(1); + + expect(result.pageInfo.total).toBe(wpThematicsFixture.length); + }); + + it('rejects with an error when no thematics are found', async () => { + window.history.replaceState({}, '', '/?error=true'); + expect.assertions(1); + + await expect(async () => + fetchThematicsList({ where: { title: 'inexistent-title' } }) + ).rejects.toEqual(new Error('No thematics found.')); + }); +}); -- cgit v1.2.3