aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/handlers/index.ts
blob: bfdeb9520d06db0620bfca8398f2e5ea6e5ca782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { commentsHandlers } from './comments';
import { postsHandlers } from './posts';
import { repositoriesHandlers } from './repositories';
import { thematicsHandlers } from './thematics';
import { topicsHandlers } from './topics';

export const handlers = [
  ...commentsHandlers,
  ...postsHandlers,
  ...repositoriesHandlers,
  ...thematicsHandlers,
  ...topicsHandlers,
];