Skip to content

Commit

Permalink
test: improve schema validation
Browse files Browse the repository at this point in the history
  • Loading branch information
mkflow27 committed Jul 17, 2024
1 parent 2b5987b commit 393b78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/schema.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const schema = {
asset: { type: "string", pattern: "^0x[a-fA-F0-9]{40}$" },
name: { type: "string", minLength: 1 },
summary: { type: "string", enum: ["safe", "unsafe"] },
review: { type: "string" },
review: { type: "string", minLength: 1},
warnings: { type: "array", items: { type: "string" } },
factory: { type: "string" },
upgradeableComponents: {
Expand Down

0 comments on commit 393b78d

Please sign in to comment.