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.
23 lines
362 B
23 lines
362 B
'use strict'
|
|
|
|
const t = require('tap')
|
|
const build = require('..')
|
|
|
|
const payload = '(throw "pwoned")'
|
|
|
|
const stringify = build({
|
|
type: 'object',
|
|
properties: {
|
|
'/*': { type: 'object' },
|
|
x: {
|
|
type: 'object',
|
|
properties: {
|
|
a: { type: 'string', default: `*/}${payload};{//` }
|
|
}
|
|
}
|
|
}
|
|
})
|
|
stringify({})
|
|
|
|
t.pass('no crashes')
|