You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							28 lines
						
					
					
						
							414 B
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							414 B
						
					
					
				'use strict'
 | 
						|
 | 
						|
const test = require('tap').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)
 | 
						|
 | 
						|
  stringify({
 | 
						|
    str: 'string'
 | 
						|
  })
 | 
						|
 | 
						|
  t.pass()
 | 
						|
})
 |