Spaces:
Runtime error
Runtime error
| const { test } = require('node:test') | |
| const build = require('..') | |
| test('object with custom format field', (t) => { | |
| t.plan(1) | |
| const schema = { | |
| title: 'object with custom format field', | |
| type: 'object', | |
| properties: { | |
| str: { | |
| type: 'string', | |
| format: 'test-format' | |
| } | |
| } | |
| } | |
| const stringify = build(schema) | |
| t.assert.doesNotThrow(() => { | |
| stringify({ | |
| str: 'string' | |
| }) | |
| }) | |
| }) | |