File size: 515 Bytes
23ac194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'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()
})