Files
cypress/__snapshots__/util-upload-spec.js
Emily Rohrbough e396956534 feat: remove windows 32-bit support (#18630)
Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
Co-authored-by: Zach Bloomquist <git@chary.us>
2021-10-29 08:54:02 -05:00

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
}
]
}