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.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							515 B
						
					
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							515 B
						
					
					
				'use strict'
 | 
						|
 | 
						|
const t = require('tap')
 | 
						|
const FjsCompiler = require('../index')
 | 
						|
 | 
						|
t.test('Use input schema duplicate in the externalSchemas', async t => {
 | 
						|
  t.plan(1)
 | 
						|
  const externalSchemas = {
 | 
						|
    schema1: {
 | 
						|
      $id: 'schema1',
 | 
						|
      type: 'number'
 | 
						|
    },
 | 
						|
    schema2: {
 | 
						|
      $id: 'schema2',
 | 
						|
      type: 'string'
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  const factory = FjsCompiler()
 | 
						|
  const compiler = factory(externalSchemas)
 | 
						|
 | 
						|
  compiler({ schema: externalSchemas.schema1 })
 | 
						|
  compiler({ schema: externalSchemas.schema2 })
 | 
						|
 | 
						|
  t.pass()
 | 
						|
})
 |