Skip to content

Commit

Permalink
fix: missing test case and wrong keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelRajodiya committed Oct 17, 2024
1 parent d44da61 commit 56d7dd5
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const solution = {
minProperties: 2,
propertyNames: {
pattern: "^[A-Z]+$",
minimumLength: 3,
minLength: 3,
},
additionalProperties: {
type: ["string", "integer"],
Expand All @@ -22,6 +22,13 @@ const testCases = [
},
expected: true,
},
{
input: {
NAME: "JOhN DOE",
PH: "97232748274",
},
expected: false,
},
{
input: {
NAME: "JOhN DOE",
Expand Down

0 comments on commit 56d7dd5

Please sign in to comment.