Last active
February 28, 2024 17:11
-
-
Save firestar300/2a584452a5ecbc14b733c493b91d39b3 to your computer and use it in GitHub Desktop.
Schema for fixtures in Cypress Omnes Education project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"properties": { | |
"name": { | |
"description": "The slug name of your site.", | |
"type": "string", | |
"minLength": 1 | |
}, | |
"production": { | |
"description": "The production URL of your site.", | |
"type": "object", | |
"properties": { | |
"url": { | |
"format": "uri", | |
"type": "string" | |
} | |
} | |
}, | |
"preproduction": { | |
"description": "The preproduction URL of your site.", | |
"type": "object", | |
"properties": { | |
"url": { | |
"format": "uri", | |
"type": "string" | |
} | |
} | |
}, | |
"pages": { | |
"description": "The list of pages to test.", | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"required": ["name", "url"] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment