Last active
February 20, 2022 17:15
-
-
Save moshfeu/1b180e677ba9e2796ed3189992577ddf to your computer and use it in GitHub Desktop.
AJV + Jest - gits #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it.only(`should user's schema be valid`, () => { | |
const schema = { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"fullname": { | |
"type": "string", | |
"minLength": 2 | |
}, | |
}, | |
}, | |
}; | |
const valid = ajv.validate(shema, [ | |
{ | |
fullname: 'a' | |
} | |
]); | |
expect(valid).toBeTruthy(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Typo at line #15, should be "schema" not "shema"