aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/handlers/topics/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/msw/handlers/topics/index.ts')
-rw-r--r--tests/msw/handlers/topics/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/msw/handlers/topics/index.ts b/tests/msw/handlers/topics/index.ts
new file mode 100644
index 0000000..e29694b
--- /dev/null
+++ b/tests/msw/handlers/topics/index.ts
@@ -0,0 +1,11 @@
+import { topicHandler } from './topic.handler';
+import { topicsCountHandler } from './topics-count.handler';
+import { topicsListHandler } from './topics-list.handler';
+import { topicsSlugsHandler } from './topics-slugs.handler';
+
+export const topicsHandlers = [
+ topicHandler,
+ topicsCountHandler,
+ topicsListHandler,
+ topicsSlugsHandler,
+];