Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/using-qit/running-tests-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ qit env:up
Once the environment is ready and your custom E2E tests are in place (either locally or uploaded to QIT), run them with:

```qitbash
qit run:e2e <extension-slug> --zip=<path-to-zip>
qit run:e2e <extension-slug> --source=<path-to-zip>
```

The `--zip` argument points to a local build of your extension. This installs the extension into the test environment and runs your custom tests against it. Since these tests run locally, you'll see immediate feedback in the terminal.
The `--source` argument points to a local build of your extension. This installs the extension into the test environment and runs your custom tests against it. Since these tests run locally, you'll see immediate feedback in the terminal.

If you've uploaded your custom tests to QIT's cloud, you can omit the `--zip` argument and run them directly:
If you've uploaded your custom tests to QIT's cloud, you can omit the `--source` argument and run them directly:

```qitbash
qit run:e2e <extension-slug>
Expand Down