diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-11-27 19:40:40 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-28 18:04:24 +0100 |
| commit | fb749e8befb2dcdc266c2e8b7ef7c9001947143a (patch) | |
| tree | 80ae62cd0a699d4feb14fe2a239b4fe317a400a0 /src/services/graphql/fetchers/posts/fetch-all-posts-slugs.test.ts | |
| parent | ab81df7f3d317281a05caec18e2cfd89dc26bc7a (diff) | |
test(services): add tests for posts fetchers
Diffstat (limited to 'src/services/graphql/fetchers/posts/fetch-all-posts-slugs.test.ts')
| -rw-r--r-- | src/services/graphql/fetchers/posts/fetch-all-posts-slugs.test.ts | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/services/graphql/fetchers/posts/fetch-all-posts-slugs.test.ts b/src/services/graphql/fetchers/posts/fetch-all-posts-slugs.test.ts new file mode 100644 index 0000000..a90df02 --- /dev/null +++ b/src/services/graphql/fetchers/posts/fetch-all-posts-slugs.test.ts @@ -0,0 +1,26 @@ +import { afterEach, describe, expect, it } from '@jest/globals'; +import { wpPostsFixture } from '../../../../../tests/fixtures'; +import { fetchAllPostsSlugs } from './fetch-all-posts-slugs'; + +describe('fetch-all-posts-slugs', () => { + afterEach(() => { + window.history.replaceState({}, '', '/'); + }); + + it('returns the WordPress posts using GraphQL', async () => { + const result = await fetchAllPostsSlugs(wpPostsFixture.length); + + expect.assertions(1); + + expect(result).toStrictEqual(wpPostsFixture.map((post) => post.slug)); + }); + + it('rejects with an error when no posts are found', async () => { + window.history.replaceState({}, '', '/?error=true'); + expect.assertions(1); + + await expect(async () => + fetchAllPostsSlugs(wpPostsFixture.length) + ).rejects.toEqual(new Error('Unable to find the posts slugs.')); + }); +}); |
