File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
packages/openapi-generator/test Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2971,7 +2971,7 @@ const InvalidError = t.intersection([
2971
2971
const ApiError = t.type({
2972
2972
error: t.string,
2973
2973
});
2974
- `
2974
+ ` ;
2975
2975
2976
2976
testCase ( 'route with api error schema' , ROUTE_WITH_SCHEMA_WITH_COMMENT , {
2977
2977
openapi : '3.0.3' ,
@@ -3244,7 +3244,8 @@ export const route = h.httpRoute({
3244
3244
400: ApiError
3245
3245
},
3246
3246
})
3247
- `
3247
+ ` ;
3248
+
3248
3249
testCase ( 'route with many response codes uses default status code descriptions' , SCHEMA_WITH_MANY_RESPONSE_TYPES , {
3249
3250
openapi : '3.0.3' ,
3250
3251
info : {
@@ -3329,7 +3330,7 @@ export const route = h.httpRoute({
3329
3330
400: t.union([t.boolean, t.boolean, t.boolean])
3330
3331
},
3331
3332
})
3332
- `
3333
+ ` ;
3333
3334
3334
3335
testCase ( 'route with reduntant response schemas' , SCHEMA_WITH_REDUNDANT_UNIONS , {
3335
3336
openapi : '3.0.3' ,
@@ -3485,7 +3486,7 @@ export const route = h.httpRoute({
3485
3486
200: t.literal('OK'),
3486
3487
},
3487
3488
});
3488
- `
3489
+ ` ;
3489
3490
3490
3491
testCase ( "route with titles in request bodies" , SCHEMA_WITH_TITLES_IN_REQUEST_BODIES , {
3491
3492
openapi : '3.0.3' ,
You can’t perform that action at this time.
0 commit comments