DEV: Add pretender endpoint for category visible groups.

This was causing our build to become flaky.
This commit is contained in:
Alan Guo Xiang Tan 2022-04-11 09:25:10 +08:00
parent 6d2441041b
commit f26d07c1ad
1 changed files with 2 additions and 0 deletions

View File

@ -1125,6 +1125,8 @@ export function applyDefaultHandlers(pretender) {
pretender.get("/tag_groups/filter/search", () =>
response(fixturesByUrl["/tag_groups/filter/search"])
);
pretender.get("/c/:id/visible_groups.json", () => response({ groups: [] }));
}
export function resetPretender() {