regressify
Version:
Visual regression tests support
43 lines • 798 B
JSON
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$ref": "#/definitions/Root",
"definitions": {
"Root": {
"type": "object",
"properties": {
"profiles": {
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/definitions/Replacement"
}
}
}
},
"required": [
"profiles"
]
},
"Replacement": {
"type": "object",
"properties": {
"ref": {
"type": "string"
},
"test": {
"type": "string"
},
"regex": {
"type": "boolean"
},
"flags": {
"type": "string"
}
},
"required": [
"ref",
"test"
]
}
}
}