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.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							709 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							709 B
						
					
					
				'use strict'
 | 
						|
 | 
						|
const test = require('tap').test
 | 
						|
const build = require('..')
 | 
						|
 | 
						|
test('nested objects with same properties', (t) => {
 | 
						|
  t.plan(1)
 | 
						|
 | 
						|
  const schema = {
 | 
						|
    title: 'nested objects with same properties',
 | 
						|
    type: 'object',
 | 
						|
    properties: {
 | 
						|
      stringProperty: {
 | 
						|
        type: 'string'
 | 
						|
      },
 | 
						|
      objectProperty: {
 | 
						|
        type: 'object',
 | 
						|
        additionalProperties: true
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
  const stringify = build(schema)
 | 
						|
 | 
						|
  const value = stringify({
 | 
						|
    stringProperty: 'string1',
 | 
						|
    objectProperty: {
 | 
						|
      stringProperty: 'string2',
 | 
						|
      numberProperty: 42
 | 
						|
    }
 | 
						|
  })
 | 
						|
  t.equal(value, '{"stringProperty":"string1","objectProperty":{"stringProperty":"string2","numberProperty":42}}')
 | 
						|
})
 |