Buckets:
ktongue/docker_container / .cache /opencode /node_modules /@fastify /merge-json-schemas /test /min-length.test.js
| 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 }) | |
| }) | |
Xet Storage Details
- Size:
- 1.13 kB
- Xet hash:
- 5171bb140537c4964a9dd3b2813afff8d102b45b0068382d1f2a04be51886732
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.