Sha256: 4b664a1383c548d05db6303904e9c651ca66fa838197eba1e20fb335bbd0e88d
Contents?: true
Size: 1.36 KB
Versions: 3
Compression:
Stored size: 1.36 KB
Contents
'use strict'; const Ajv = require('ajv'); const jsonSchemaTest = require('json-schema-test'); const assert = require('assert'); const refs = { 'http://localhost:1234/integer.json': require('./remotes/integer.json'), 'http://localhost:1234/subSchemas.json': require('./remotes/subSchemas.json'), 'http://localhost:1234/folder/folderInteger.json': require('./remotes/folder/folderInteger.json'), 'http://localhost:1234/name.json': require('./remotes/name.json'), 'http://localhost:1234/name-defs.json': require('./remotes/name-defs.json') }; const SKIP = { 4: ['optional/zeroTerminatedFloats'], 7: [ 'format/idn-email', 'format/idn-hostname', 'format/iri', 'format/iri-reference', 'optional/content' ] }; [4, 6, 7].forEach((draft) => { let ajv; if (draft == 7) { ajv = new Ajv({format: 'full'}); } else { const schemaId = draft == 4 ? 'id' : '$id'; ajv = new Ajv({format: 'full', meta: false, schemaId}); ajv.addMetaSchema(require(`ajv/lib/refs/json-schema-draft-0${draft}.json`)); ajv._opts.defaultMeta = `http://json-schema.org/draft-0${draft}/schema#`; } for (const uri in refs) ajv.addSchema(refs[uri], uri); jsonSchemaTest(ajv, { description: `Test suite draft-0${draft}`, suites: {tests: `./tests/draft${draft}/{**/,}*.json`}, skip: SKIP[draft], cwd: __dirname, hideFolder: 'tests/' }); });
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
json_schemer-0.2.9 | JSON-Schema-Test-Suite/index.js |
json_schemer-0.2.8 | JSON-Schema-Test-Suite/index.js |
json_schemer-0.2.7 | JSON-Schema-Test-Suite/index.js |