blob: 0e3bb9086220f290680236f4b9778b117a010d10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import { afterEach, describe, expect, it } from '@jest/globals';
import { wpTopicsFixture } from '../../../../../tests/fixtures';
import { fetchTopicsCount } from './fetch-topics-count';
describe('fetch-topics-count', () => {
afterEach(() => {
window.history.replaceState({}, '', '/');
});
it('returns the WordPress topics count using GraphQL', async () => {
const result = await fetchTopicsCount();
expect.assertions(1);
expect(result).toBe(wpTopicsFixture.length);
});
it('rejects with an error when no topics are found', async () => {
window.history.replaceState({}, '', '/?error=true');
expect.assertions(1);
await expect(async () => fetchTopicsCount()).rejects.toEqual(
new Error('Unable to find the total number of topics.')
);
});
});
|