Skip to content

Commit

Permalink
chore: TemplatesPage tests failing on M1 (#5088)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtojek committed Nov 15, 2022
1 parent e68923f commit eda7c66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/src/pages/TemplatesPage/TemplatesPage.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe("TemplatesPage", () => {
return res(ctx.status(200), ctx.json([]))
},
),
rest.post("/api/v2/authcheck", async (req, res, ctx) => {
rest.post("/api/v2/authcheck", (req, res, ctx) => {
return res(
ctx.status(200),
ctx.json({
Expand Down Expand Up @@ -57,7 +57,7 @@ describe("TemplatesPage", () => {
return res(ctx.status(200), ctx.json([]))
},
),
rest.post("/api/v2/authcheck", async (req, res, ctx) => {
rest.post("/api/v2/authcheck", (req, res, ctx) => {
return res(
ctx.status(200),
ctx.json({
Expand Down

0 comments on commit eda7c66

Please sign in to comment.