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.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/msw/handlers/index.ts b/tests/msw/handlers/index.ts
index decbc9f..5f331e7 100644
--- a/tests/msw/handlers/index.ts
+++ b/tests/msw/handlers/index.ts
@@ -1,3 +1,4 @@
+import { commentsHandlers } from './comments';
import { postsHandlers } from './posts';
-export const handlers = [...postsHandlers];
+export const handlers = [...commentsHandlers, ...postsHandlers];