aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/handlers/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/msw/handlers/index.ts')
-rw-r--r--tests/msw/handlers/index.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/msw/handlers/index.ts b/tests/msw/handlers/index.ts
index 5f331e7..e42a0eb 100644
--- a/tests/msw/handlers/index.ts
+++ b/tests/msw/handlers/index.ts
@@ -1,4 +1,9 @@
import { commentsHandlers } from './comments';
import { postsHandlers } from './posts';
+import { thematicsHandlers } from './thematics';
-export const handlers = [...commentsHandlers, ...postsHandlers];
+export const handlers = [
+ ...commentsHandlers,
+ ...postsHandlers,
+ ...thematicsHandlers,
+];