From 180134883b281883246fc9909b1d494363861144 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 28 Nov 2023 15:48:25 +0100 Subject: test(services): add tests for comments list fetcher --- .../fetchers/comments/fetch-comments.test.ts | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/services/graphql/fetchers/comments/fetch-comments.test.ts (limited to 'src/services/graphql/fetchers/comments/fetch-comments.test.ts') diff --git a/src/services/graphql/fetchers/comments/fetch-comments.test.ts b/src/services/graphql/fetchers/comments/fetch-comments.test.ts new file mode 100644 index 0000000..15cfb6d --- /dev/null +++ b/src/services/graphql/fetchers/comments/fetch-comments.test.ts @@ -0,0 +1,26 @@ +import { afterEach, describe, expect, it } from '@jest/globals'; +import { wpCommentsFixture } from '../../../../../tests/fixtures'; +import { fetchCommentsList } from './fetch-comments'; + +describe('fetch-comments', () => { + afterEach(() => { + window.history.replaceState({}, '', '/'); + }); + + it('returns the WordPress comments using GraphQL', async () => { + const result = await fetchCommentsList({}); + + expect.assertions(1); + + expect(result.length).toBe(wpCommentsFixture.length); + }); + + it('rejects with an error when no comments are found', async () => { + window.history.replaceState({}, '', '/?error=true'); + expect.assertions(1); + + await expect(async () => + fetchCommentsList({ where: { contentName: '/inexistent-slug' } }) + ).rejects.toEqual(new Error('No comments found.')); + }); +}); -- cgit v1.2.3