Skip to content

Instantly share code, notes, and snippets.

@firestar300
Last active February 28, 2024 17:11
Show Gist options
  • Save firestar300/2a584452a5ecbc14b733c493b91d39b3 to your computer and use it in GitHub Desktop.
Save firestar300/2a584452a5ecbc14b733c493b91d39b3 to your computer and use it in GitHub Desktop.
Schema for fixtures in Cypress Omnes Education project
{
"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