Configuring Your TestCafe Tests
saucectl
relies on a YAML specification file to determine exactly which tests to run and how to run them. To customize saucectl
to run your TestCafe tests, simply modify the properties of the YAML file accordingly. This page defines each of the configuration properties specific to running TestCafe tests.
Setting an Alternative Configuration File
By default, saucectl
looks for the config.yml
file in the .sauce
folder of your project root, but you can actually specify a different file, or if you are using multiple frameworks or need to configure different sets of tests to run separately, you may choose to have multiple configuration files that you can direct saucectl
to reference as necessary.
Use the following configuration at runtime to direct saucectl
to use any configuration file you choose:
saucectl run -c ./path/to/{config-file}.yml
While you can use multiple files of different names or locations to specify your configurations, each file must be a *.yml
and follow the saucectl
syntax. Our IDE Integrations (e.g., Visual Studio Code) can help you out by validating the YAML files and provide handy suggestions, so make sure to check them out!
Example Configuration
loading...
Each of the properties supported for running TestCafe tests through saucectl
is defined below.
apiVersion
| REQUIRED | STRING |
Identifies the version of the underlying configuration schema. At this time, v1alpha
is the only supported value.
apiVersion: v1alpha
kind
| REQUIRED | STRING/ENUM |
Specifies which framework is associated with the automation tests configured in this specification.
kind: testcafe
nodeVersion
| OPTIONAL | STRING |
Specifies the Node.js version for Sauce Cloud, supporting SemVer notation and aliases. For more details, refer to the Advanced Configuration Page.
Examples: v20
, v20.14.0
, v20.14
, iron
, lts
.
This feature is available in saucectl
version v0.185.0+ and supported test runners. For details on supported test runners, see Supported Testing Platforms.
nodeVersion: v20
showConsoleLog
| OPTIONAL | BOOLEAN |
Controls whether the contents of console.log
are always shown in the local output of saucectl. By default (false), console.log
is only shown for failed suites.
showConsoleLog: true
defaults
| OPTIONAL | OBJECT |
Specifies any default settings for the project.
defaults:
timeout: 15m
timeout
| OPTIONAL | DURATION |
Instructs how long (in ms
, s
, m
, or h
) saucectl
should wait for each suite to complete. You can override this setting for individual suites using the timeout
setting within the suites
object. If not set, the default value is 0
(unlimited).
defaults:
timeout: 15m
sauce
| OPTIONAL | OBJECT |
The parent property containing all settings related to how tests are run and identified in the Sauce Labs platform.
sauce:
region: eu-central-1
metadata:
tags:
- e2e
- release team
- other tag
build: Release $CI_COMMIT_SHORT_SHA
concurrency: 10
region
| OPTIONAL | STRING/ENUM |
Specifies through which Sauce Labs data center tests will run. Valid values are: us-west-1
or eu-central-1
.
If you do not specify a region in your config file, you must set it when running your command with the --region
flag.
sauce:
region: eu-central-1
metadata
| OPTIONAL | OBJECT |
The set of properties that allows you to provide additional information about your project that helps you distinguish it in the various environments in which it is used and reviewed, and also helps you apply filters to easily isolate tests based on metrics that are meaningful to you, as shown in the following example:
sauce:
metadata:
build: RC 10.4.a
tags:
- e2e
- release team
- beta
- featurex
concurrency
| OPTIONAL | INTEGER |
Sets the maximum number of suites to execute at the same time. If the test defines more suites than the max, excess suites are queued and run in order as each suite completes.
For tests running on Sauce, set this value to equal or less than your Sauce concurrency allowance, as setting a higher value may result in jobs dropped by the server.
sauce:
concurrency: 5
Alternatively, you can override the file setting at runtime by setting the concurrency flag as an inline parameter of the saucectl run
command:
saucectl run --ccy 5
retries
| OPTIONAL | INTEGER |
Sets the number of times to retry a failed suite. For more settings, you can refer to passThreshold.
sauce:
retries: 1
Alternatively, you can override the file setting at runtime by setting the retries flag as an inline parameter of the saucectl run
command:
saucectl run --retries 1
tunnel
| OPTIONAL | OBJECT |
saucectl
supports using Sauce Connect to establish a secure connection with Sauce Labs. To do so, launch a tunnel; then provide the name and owner (if applicable) in this property.
sauce:
tunnel:
name: your_tunnel_name
owner: tunnel_owner_username
Only certain HTTP(S) ports are proxied by the tunnel.
name
| OPTIONAL | STRING |
Identifies an active Sauce Connect tunnel to use for secure connectivity to the Sauce Labs cloud.
This property replaces the former id
property, which is deprecated.
sauce:
tunnel:
name: your_tunnel_name
owner
| OPTIONAL | STRING |
Identifies the Sauce Labs user who created the specified tunnel, which is required if the user running the tests did not create the tunnel.
This property replaces the former parent
property, which is deprecated.
sauce:
tunnel:
name: your_tunnel_name
owner: tunnel_owner_username
timeout
| OPTIONAL | DURATION |
How long to wait for the specified tunnel to be ready. Supports duration values like '10s', '30m' etc. (default: 30s)
sauce:
tunnel:
name: your_tunnel_name
timeout: 30s
visibility
| OPTIONAL | STRING |
Sets the visibility level of test results for suites run on Sauce Labs. If unspecified or empty, team
visibility will be applied. Valid values are:
public
: Accessible to anyone.public restricted
: Share your job's results page and video, but keeps the logs only for you.share
: Only accessible to people with a valid link.team
: (Default) Only accessible to people under the same root account as you.private
: Only you (the owner) will be able to view assets and test results page.
sauce:
visibility: private
launchOrder
| OPTIONAL | STRING |
Specifies the execution order for your test suites. When set to fail rate
, test suites with the highest failure rate will execute first. If unspecified, test suites will execute in the order in which they are written in the configuration file.
sauce:
launchOrder: fail rate
env
| OPTIONAL | OBJECT |
A property containing one or more environment variables that are global for all tests suites in this configuration. Values set in this global property will overwrite values set for the same environment variables set at the suite level.
env:
hello: world
my_var: $MY_VAR # You can also pass through existing environment variables through parameter expansion
Environment variables set with the saucectl --env
flag will overwrite those specified in the sauce config file.
The order of precedence is as follows: --env flag > root-level environment variables > suite-level environment variables.
rootDir
| REQUIRED | OBJECT |
The directory of files that need to be bundled and uploaded for the tests to
run. Ignores what is specified in .sauceignore
.
See Tailoring Your Test File Bundle
for more details. The following examples show the different relative options for
setting this value.
rootDir: "./" # Use the current directory
rootDir: "packages/subpackage" # Some other package from within a monorepo
Only the files contained within rootDir
will be available during the tests. Any reference to a file that is not included in rootDir
will make the tests fail.
npm
| OPTIONAL | OBJECT |
A parent property specifying the configuration details for any npm
dependencies. Packages listed are installed in the environment prior to your tests executing.
npm:
strictSSL: true
registry: https://registry.npmjs.org
registries:
- url: https://registry.npmjs.org
packages:
lodash: "4.17.20"
"@babel/preset-typescript": "7.12"
"@testcafe/react": "^5.0.1"
registry
| OPTIONAL | STRING |
This setting is supported up to TestCafe 2.6.2. For newer versions, use registries
.
Specifies the location of the npm registry source. If the registry source is a private address, and you are running tests on Sauce Cloud, you can provide access to the registry source using Sauce Connect.
npm:
registry: https://registry.npmjs.org
registries
| OPTIONAL | ARRAY |
Specifies the location of the npm registry, scope, and credentials. Only one scopeless registry is allowed. If the registry is inside a private network, you must establish a tunnel using Sauce Connect.
npm:
registries:
- url: https://registry.npmjs.org
- url: https://private.registry.company.org
scope: "@company"
authToken: secretToken
auth: base64SecretToken
username: myUsername
password: myPassword
email: myEmail
url
Specifies the URL of the npm registry.
| REQUIRED | STRING |
npm:
registries:
- url: https://registry.npmjs.org
scope
Specifies which scope is associated with this registry. See Associating a scope with a registry.
| OPTIONAL | STRING |
npm:
registries:
- url: https://registry.npmjs.org
scope: "@company"
authToken
Specifies the authentication token to be used with this registry.
| OPTIONAL | STRING |
npm:
registries:
- url: https://registry.npmjs.org
authToken: secretToken
auth
Specifies the Base64-encoded authentication string for the registry entry.
| OPTIONAL | STRING |
npm:
registries:
- url: https://registry.npmjs.org
auth: base64SecretToken
username
Specifies the username for authentication with the registry.
| OPTIONAL | STRING |
npm:
registries:
- url: https://registry.npmjs.org
username: myName
password
Specifies the password for authentication with the registry.
| OPTIONAL | STRING |
npm:
registries:
- url: https://registry.npmjs.org
password: myPassword
email
Specifies the email associated with the registry account.
| OPTIONAL | STRING |
npm:
registries:
- url: https://registry.npmjs.org
email: myEmail
packages
| OPTIONAL | OBJECT |
Specifies any npm packages that are required to run tests and should, therefore, be installed on the Sauce Labs VM. See Including Node Dependencies.
npm:
packages:
lodash: "4.17.20"
"@babel/preset-typescript": "7.12"
"@testcafe/react": "^5.0.1"
Do not use dependencies
and packages
at the same time.
usePackageLock
| OPTIONAL | BOOLEAN | TestCafe 3.6.2+ | saucectl 0.187.0+ |
Specifies whether to use the project's package-lock.json when installing npm dependencies. If true, package-lock.json will be used during package installation which can improve the speed of installation.
To use this feature, additional pre-requisites must be met:
- A package-lock.json must be present in your project.
- The
testcafe
version in your package.json must exactly match the version defined in your saucectl config.
npm:
usePackageLock: true
You can use this option with packages
to define packages to install in
addition to those defined in your package-lock.json
.
dependencies
| OPTIONAL | ARRAY |
Specifies any npm packages that are required to run tests and should, therefore, be included in the bundle.
Unlike packages
, which installs dependencies on the VM, the dependencies specified here have to be already installed in the local node_modules
folder. These dependencies, along with any related transitive dependencies, are then included in the bundle that is uploaded to Sauce Labs.
If you have already been including node_modules
in your bundle, then this feature will help you speed up your tests by reducing the amount of files in the bundle. A smaller bundle will upload and extract faster, which speeds up the setup on the VM, facilitating a faster test feedback cycle.
Take note that the syntax is different from packages
. It's a simple list of dependencies, without the need to specify the version.
npm:
dependencies:
- lodash
To use this feature, make sure that node_modules
is not ignored via .sauceignore
.
Do not use dependencies
and packages
at the same time.
strictSSL
| OPTIONAL | BOOLEAN |
Instructs npm to perform SSL key validation when making requests to the registry via HTTPS (true
) or not (false
). Defaults to npm's strict-ssl
value if not set. See more here.
npm:
strictSSL: false
package:
"lodash": "4.17.20"
reporters
| OPTIONAL | OBJECT |
Configures additional reporting capabilities provided by saucectl
.
reporters:
junit:
enabled: true
filename: saucectl-report.xml
junit
| OPTIONAL | OBJECT |
The JUnit reporter gathers JUnit reports from all jobs and combines them into a single report.
reporters:
junit:
enabled: true
filename: saucectl-report.xml
spotlight
| OPTIONAL | OBJECT |
The spotlight reporter highlights failed or otherwise interesting jobs. It may include an excerpt of failed tests or other information that may be useful for troubleshooting.
reporters:
spotlight:
enabled: true
json
| OPTIONAL | OBJECT |
The JSON reporter gathers test results from all jobs and combines them into a single report.
reporters:
json:
enabled: true
filename: saucectl-report.json
webhookURL: saucectl-report.json
enabled
| OPTIONAL | BOOLEAN |
Toggles the reporter on/off.
reporters:
json:
enabled: true
webhookURL
| OPTIONAL | STRING |
Specifies the webhook URL. When saucectl test is finished, it'll send an HTTP POST with a JSON payload to the configured webhook URL.
reporters:
json:
enabled: true
webhookURL: https://my-webhook-url
filename
| OPTIONAL | STRING |
Specifies the report filename. Defaults to "saucectl-report.json".
reporters:
json:
enabled: true
filename: my-saucectl-report.json
artifacts
| OPTIONAL | OBJECT |
Specifies how to manage test artifacts, such as logs, videos, and screenshots.
artifacts:
cleanup: true
download:
when: always
match:
- junit.xml
directory: ./artifacts/
cleanup
| OPTIONAL | BOOLEAN |
When set to true
, all contents of the specified download directory are cleared before any new artifacts from the current test are downloaded.
artifacts:
cleanup: true
retain
| OPTIONAL | OBJECT |
Define directories to archive and retain as a test asset at the end of a test run. Archived test assets can
be downloaded automatically using the download
configuration, via the
REST API, or through the test details page.
artifacts:
retain:
source-directory: destination-archive.zip
download:
when: always
match:
- destination-archive.zip
directory: ./artifacts/
The source and destination will be relative to the rootDir
defined in your configuration.
The destination archive must have a .zip file extension.
download
| OPTIONAL | OBJECT |
Specifies the settings related to downloading artifacts from tests run by saucectl
.
artifacts:
download:
when: always
match:
- junit.xml
directory: ./artifacts/
when
| OPTIONAL | STRING |
Specifies when and under what circumstances to download artifacts. Valid values are:
always
: Always download artifacts.never
: Never download artifacts.pass
: Download artifacts for passing suites only.fail
: Download artifacts for failed suites only.
artifacts:
download:
when: always
match
| OPTIONAL | STRING/ARRAY |
Specifies which artifacts to download based on whether they match the name or file type pattern provided. Supports the wildcard character *
(use quotes for best parsing results with wildcard).
artifacts:
download:
match:
- junit.xml
- "*.log"