Skip to content

Instantly share code, notes, and snippets.

@moshfeu
Last active February 20, 2022 17:15
Show Gist options
  • Save moshfeu/1b180e677ba9e2796ed3189992577ddf to your computer and use it in GitHub Desktop.
Save moshfeu/1b180e677ba9e2796ed3189992577ddf to your computer and use it in GitHub Desktop.
AJV + Jest - gits #4
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();
});
@Givemeurcookies
Copy link

Typo at line #15, should be "schema" not "shema"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment