You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"scripts": {
"cy:A": "browserstack-cypress run --ccf 'cypress/e2e/a/cypress.config.mjs' --b \"AAA\"",
"cy:B": "browserstack-cypress run --ccf 'cypress/e2e/b/cypress.config.mjs' --b \"BBB\""
},
In my project, there are multiple scripts for running tests in different spaces. When my command triggers concurrently, the 'delete tests.zip' process of one test simultaneously deletes the tests.zip of other tests, resulting in the following error:
{
message: "form-data: ENOENT: no such file or directory, open 'tests.zip'",
stack: "Error: ENOENT: no such file or directory, open 'tests.zip'",
errno: -2,
code: 'ENOENT',
syscall: 'open',
path: 'tests.zip'
}
Is there any API or setting to avoid such situations? For example, can we manually adjust the file names of tests.zip? I couldn't seem to find it in the documentation.
The text was updated successfully, but these errors were encountered:
In my project, there are multiple scripts for running tests in different spaces. When my command triggers concurrently, the 'delete tests.zip' process of one test simultaneously deletes the tests.zip of other tests, resulting in the following error:
Is there any API or setting to avoid such situations? For example, can we manually adjust the file names of tests.zip? I couldn't seem to find it in the documentation.
The text was updated successfully, but these errors were encountered: