Skip to content

Commit

Permalink
chore: Use prettier to lint files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 11, 2023
1 parent 3098140 commit 7cb4ec4
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions __tests__/JSONSchemaViewer/array.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,19 +89,16 @@ const testcases: JSONSchema[] = [
},
{
type: "array",
prefixItems: [
{ type: "number" },
{ type: "string" }
],
minItems: 3
prefixItems: [{ type: "number" }, { type: "string" }],
minItems: 3,
},
{
type: "array",
items: {
type: "string"
type: "string",
},
minItems: 1
}
minItems: 1,
},
]

describe("JSONSchemaViewer - Array type", () => {
Expand Down

0 comments on commit 7cb4ec4

Please sign in to comment.