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.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							624 B
						
					
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							624 B
						
					
					
				'use strict'
 | 
						|
 | 
						|
const test = require('tap').test
 | 
						|
const validator = require('is-my-json-valid')
 | 
						|
const build = require('..')
 | 
						|
 | 
						|
test('object with RexExp', (t) => {
 | 
						|
  t.plan(3)
 | 
						|
 | 
						|
  const schema = {
 | 
						|
    title: 'object with RegExp',
 | 
						|
    type: 'object',
 | 
						|
    properties: {
 | 
						|
      reg: {
 | 
						|
        type: 'string'
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  const obj = {
 | 
						|
    reg: /"([^"]|\\")*"/
 | 
						|
  }
 | 
						|
 | 
						|
  const stringify = build(schema)
 | 
						|
  const validate = validator(schema)
 | 
						|
  const output = stringify(obj)
 | 
						|
 | 
						|
  JSON.parse(output)
 | 
						|
  t.pass()
 | 
						|
 | 
						|
  t.equal(obj.reg.source, new RegExp(JSON.parse(output).reg).source)
 | 
						|
  t.ok(validate(JSON.parse(output)), 'valid schema')
 | 
						|
})
 |