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.

46 lines
656 B

3 years ago
'use strict'
const test = require('tap').test
const build = require('..')
test('Should clean the cache', (t) => {
t.plan(1)
const schema = {
$id: 'test',
type: 'string'
}
build(schema)
build(schema)
t.pass()
})
test('Should clean the cache with external schemas', (t) => {
t.plan(1)
const schema = {
$id: 'test',
definitions: {
def: {
type: 'object',
properties: {
str: {
type: 'string'
}
}
}
},
type: 'object',
properties: {
obj: {
$ref: '#/definitions/def'
}
}
}
build(schema)
build(schema)
t.pass()
})