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-topic.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-topic.test.ts')
| -rw-r--r-- | src/services/graphql/fetchers/topics/fetch-topic.test.ts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/services/graphql/fetchers/topics/fetch-topic.test.ts b/src/services/graphql/fetchers/topics/fetch-topic.test.ts new file mode 100644 index 0000000..5fae313 --- /dev/null +++ b/src/services/graphql/fetchers/topics/fetch-topic.test.ts @@ -0,0 +1,23 @@ +import { describe, expect, it } from '@jest/globals'; +import { wpTopicsFixture } from '../../../../../tests/fixtures'; +import { fetchTopic } from './fetch-topic'; + +describe('fetch-topic', () => { + it('returns a topic by slug', async () => { + const result = await fetchTopic(wpTopicsFixture[2].slug); + + expect.assertions(1); + + expect(result).toStrictEqual(wpTopicsFixture[2]); + }); + + it('rejects with an error when the slug does not exist', async () => { + const slug = '/inexistent-slug'; + + expect.assertions(1); + + await expect(async () => fetchTopic(slug)).rejects.toEqual( + new Error(`No topic found for the following slug ${slug}.`) + ); + }); +}); |
