Features

Authentication Options

To use the TestingBot CLI, you'll need to authenticate with our Service.
You can authenticate in two ways:

Environment Variables

You can set the following two environment variables before using the CLI:

TESTINGBOT_KEY=
TESTINGBOT_SECRET=

The CLI will automatically pick up these two variables and use them to authenticate.
You can find these two values in our member dashboard.

Credentials in Config File

You can set the TestingBot Key and Secret values in the testingbot.json file:

{
    "auth": {
        "key": "TESTINGBOT_KEY",
        "secret": "TESTINGBOT_SECRET"
    },
    ...
}