From 29a1dec4de0aa7ba64ef068a83b1b8589fbc3ad0 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 28 Nov 2023 17:49:26 +0100 Subject: 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 --- tests/msw/handlers/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/msw/handlers/index.ts') diff --git a/tests/msw/handlers/index.ts b/tests/msw/handlers/index.ts index e42a0eb..85a2300 100644 --- a/tests/msw/handlers/index.ts +++ b/tests/msw/handlers/index.ts @@ -1,9 +1,11 @@ import { commentsHandlers } from './comments'; import { postsHandlers } from './posts'; import { thematicsHandlers } from './thematics'; +import { topicsHandlers } from './topics'; export const handlers = [ ...commentsHandlers, ...postsHandlers, ...thematicsHandlers, + ...topicsHandlers, ]; -- cgit v1.2.3