mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-03 05:19:45 -06:00
Co-authored-by: Jennifer Shehane <jennifer@cypress.io> Co-authored-by: Zach Bloomquist <git@chary.us>
38 lines
605 B
JavaScript
38 lines
605 B
JavaScript
exports['upload util isValidPlatformArch checks given strings second 1'] = {
|
|
"name": "second",
|
|
"behavior": [
|
|
{
|
|
"given": "darwin-x64",
|
|
"expect": true
|
|
},
|
|
{
|
|
"given": "linux-x64",
|
|
"expect": true
|
|
},
|
|
{
|
|
"given": "win32-x64",
|
|
"expect": true
|
|
},
|
|
{
|
|
"given": "darwin",
|
|
"expect": false
|
|
},
|
|
{
|
|
"given": "win32",
|
|
"expect": false
|
|
},
|
|
{
|
|
"given": "windows",
|
|
"expect": false
|
|
},
|
|
{
|
|
"given": "linux",
|
|
"expect": false
|
|
},
|
|
{
|
|
"given": "linux64",
|
|
"expect": false
|
|
}
|
|
]
|
|
}
|