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.
54 lines
760 B
54 lines
760 B
4 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'
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
build(schema)
|
||
|
build(schema)
|
||
|
t.pass()
|
||
|
} catch (err) {
|
||
|
t.fail(err)
|
||
|
}
|
||
|
})
|
||
|
|
||
|
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'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
build(schema)
|
||
|
build(schema)
|
||
|
t.pass()
|
||
|
} catch (err) {
|
||
|
t.fail(err)
|
||
|
}
|
||
|
})
|