diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-11-28 17:49:26 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-28 18:04:24 +0100 |
| commit | 29a1dec4de0aa7ba64ef068a83b1b8589fbc3ad0 (patch) | |
| tree | 8db871542e878e9fdf589bccd1be7b5ed1378f72 /src/services/graphql/fetchers/topics/fetch-all-topics-slugs.test.ts | |
| parent | f564d181bc428e25a02bf1d98c4449a6b3eb8e9e (diff) | |
fix(services,types): make queries and types coherent for Topic
* some nodes was missing in topicQuery
* a node was mispelled in topicsListQuery
* add tests for all topics fetchers
Diffstat (limited to 'src/services/graphql/fetchers/topics/fetch-all-topics-slugs.test.ts')
| -rw-r--r-- | src/services/graphql/fetchers/topics/fetch-all-topics-slugs.test.ts | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.test.ts b/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.test.ts new file mode 100644 index 0000000..2e3bbb2 --- /dev/null +++ b/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.test.ts @@ -0,0 +1,26 @@ +import { afterEach, describe, expect, it } from '@jest/globals'; +import { wpTopicsFixture } from '../../../../../tests/fixtures'; +import { fetchAllTopicsSlugs } from './fetch-all-topics-slugs'; + +describe('fetch-all-topics-slugs', () => { + afterEach(() => { + window.history.replaceState({}, '', '/'); + }); + + it('returns the WordPress topics using GraphQL', async () => { + const result = await fetchAllTopicsSlugs(wpTopicsFixture.length); + + expect.assertions(1); + + expect(result).toStrictEqual(wpTopicsFixture.map((post) => post.slug)); + }); + + it('rejects with an error when no topics are found', async () => { + window.history.replaceState({}, '', '/?error=true'); + expect.assertions(1); + + await expect(async () => + fetchAllTopicsSlugs(wpTopicsFixture.length) + ).rejects.toEqual(new Error('Unable to find the topics slugs.')); + }); +}); |
