We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0efb5 commit ef1f173Copy full SHA for ef1f173
src/mirage/index.ts
@@ -399,7 +399,7 @@ export const startMirage = ({ environment = 'development' } = {}) => {
399
},
400
]);
401
this.get('api/v2/probes', () => []);
402
- this.post('/api/beta/matchExpressions', (_, request) => {
+ this.post('api/beta/matchExpressions', (_, request) => {
403
const attr = JSON.parse(request.requestBody);
404
if (!attr.matchExpression || !attr.targets) {
405
return new Response(400);
0 commit comments