@revoloo/cypress6
Version:
Cypress.io end to end testing tool
42 lines (41 loc) • 668 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-ia32",
"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
}
]
}