feature/modify-types-init-value #7

Merged
root merged 2 commits from feature/modify-types-init-value into develop 2020-06-10 14:17:29 +00:00
Showing only changes of commit cdbecea36d - Show all commits

View File

@ -24,5 +24,7 @@ describe('test validate type schema object', () => {
}).required() }).required()
throwFunc(obj.validate({ name: 'asd' })) throwFunc(obj.validate({ name: 'asd' }))
expect(throwFunc(obj.validate({ name: 123 }))).toThrow()
}) })
}) })