Features

Upload Options

The TestingBot Cypress CLI will automatically collect and upload your Cypress tests and configuration files,
to run these on the TestingBot Browser Grid.

These files are uploaded to TestingBot Storage, where they will only be used for running tests (in parallel) on TestingBot.

However, you may want to exclude certain files from being uploaded, if:

  • The ZIP file is too large (over 150MB)
  • The upload is taking too long
  • You are zipping unnecessary files, for example node_modules/*

If you're looking to only run a subset of tests, please see the specs option.

Exclude files with Run Settings

To exclude certain files, please specify the file, directory, or a wildcard combination in the run_settings with exclude:

{
  ...
  "run_settings": {
    ...
    "exclude": ["some-folder/test.js", "static/*.pdf"]
    ...
  }
  ...
}