Skip to content

Commit 7d4f1b3

Browse files
committed
chore: lint format
1 parent a09bd9a commit 7d4f1b3

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

packages/openapi-typescript/test/transform/path-item-object.test.ts

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -366,24 +366,24 @@ describe("transformPathItemObject", () => {
366366
get: {
367367
parameters: [
368368
{
369-
"name": "param1",
370-
"in": "header",
371-
"required": true,
372-
"schema": {
373-
"type": "string"
369+
name: "param1",
370+
in: "header",
371+
required: true,
372+
schema: {
373+
type: "string",
374374
},
375-
"description": "param1"
375+
description: "param1",
376376
},
377377
{
378-
"name": "param1",
379-
"in": "cookie",
380-
"required": true,
381-
"schema": {
382-
"type": "string"
378+
name: "param1",
379+
in: "cookie",
380+
required: true,
381+
schema: {
382+
type: "string",
383383
},
384-
"description": "param1"
385-
}
386-
]
384+
description: "param1",
385+
},
386+
],
387387
},
388388
},
389389
want: `{
@@ -421,7 +421,10 @@ describe("transformPathItemObject", () => {
421421
],
422422
];
423423

424-
for (const [testName, { given, want, options = DEFAULT_OPTIONS, ci }] of tests) {
424+
for (const [
425+
testName,
426+
{ given, want, options = DEFAULT_OPTIONS, ci },
427+
] of tests) {
425428
test.skipIf(ci?.skipIf)(
426429
testName,
427430
async () => {

0 commit comments

Comments
 (0)