DeleteForm Complete With Tests of It Rendering/Beahavioral/submission

This commit is contained in:
2023-10-17 11:15:59 +03:30
parent e9795d5935
commit 4f752c9a46
6 changed files with 61 additions and 43 deletions

View File

@@ -50,4 +50,9 @@ export const handler = [
ctx.status(200),
);
}),
rest.delete(`${EXPERT_MANAGEMENT}/:id`, (req, res, ctx) => {
return res(
ctx.status(200),
);
}),
]