Option types⚓︎
Below you will find accepted values of custom option types you can use when providing values to options through environment variables.
boolean⚓︎
- Accepted values
-
true1yesyon
-
false0nonoff
Example
string[]⚓︎
- Accepted values
- A JSON parseable list of strings.
Info
Parsing is done by Cypress, so it's difficult to actually describe the parsing rules it applies. The most important rules seem to be:
- add quotes if your string contains whitespace
- add quotes if your string contains a comma
- no whitespace outside quotes
Example
object⚓︎
- Accepted values
- A JSON parseable object.
Info
Parsing is done by Cypress, so it's difficult to actually describe the parsing rules it applies. The most important rules seem to be:
- add quotes if your string contains whitespace
- add quotes if your string contains a comma
- no whitespace outside quotes
Example