Projektstart
This commit is contained in:
30
backend/node_modules/@fastify/merge-json-schemas/test/min-length.test.js
generated
vendored
Normal file
30
backend/node_modules/@fastify/merge-json-schemas/test/min-length.test.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
'use strict'
|
||||
|
||||
const assert = require('node:assert/strict')
|
||||
const { test } = require('node:test')
|
||||
const { mergeSchemas } = require('../index')
|
||||
const { defaultResolver } = require('./utils')
|
||||
|
||||
test('should merge empty schema and minLength keyword', () => {
|
||||
const schema1 = { type: 'string' }
|
||||
const schema2 = { type: 'string', minLength: 42 }
|
||||
|
||||
const mergedSchema = mergeSchemas([schema1, schema2], { defaultResolver })
|
||||
assert.deepStrictEqual(mergedSchema, { type: 'string', minLength: 42 })
|
||||
})
|
||||
|
||||
test('should merge equal minLength values', () => {
|
||||
const schema1 = { type: 'string', minLength: 42 }
|
||||
const schema2 = { type: 'string', minLength: 42 }
|
||||
|
||||
const mergedSchema = mergeSchemas([schema1, schema2], { defaultResolver })
|
||||
assert.deepStrictEqual(mergedSchema, { type: 'string', minLength: 42 })
|
||||
})
|
||||
|
||||
test('should merge different minLength values', () => {
|
||||
const schema1 = { type: 'string', minLength: 42 }
|
||||
const schema2 = { type: 'string', minLength: 43 }
|
||||
|
||||
const mergedSchema = mergeSchemas([schema1, schema2], { defaultResolver })
|
||||
assert.deepStrictEqual(mergedSchema, { type: 'string', minLength: 43 })
|
||||
})
|
||||
Reference in New Issue
Block a user