mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-30 11:00:35 -06:00
* adding S3 sdk * test binary folder * linting * before searching for binary * linting * grab folders in the given S3 prefix * grab folders in the given S3 prefix * find the last build * found last builds for commit * refactoring * add tests for upload dir name * create destination zip filename * copying S3 files * move s3 helpers into own object, prepare for testing * add realistic test * linting * chore: add documentation to DEPLOY.md file
42 lines
668 B
JavaScript
42 lines
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
|
|
}
|
|
]
|
|
}
|