Skip to content

Commit

Permalink
fix(docs): E2E docs fix (#3528)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Jan 15, 2024
1 parent 29ae31c commit 18f01ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/docs/tools-and-integrations/cypress.mdx
Expand Up @@ -236,14 +236,14 @@ describe('Home', { defaultCommandTimeout: 60000 }, () => {

### Setting the Environment Variables

Copy the `.env.example` file to `.env` and add the Tracetest API token and agent tokens to the `TRACETEST_API_TOKEN` and `TRACETEST_AGENT_API_KEY` variables.
Copy the `.env.template` file to `.env` and add the Tracetest API token and agent tokens to the `TRACETEST_API_TOKEN` and `TRACETEST_AGENT_API_KEY` variables.

### Starting the Pokeshop Demo App

To start the Pokeshop Demo App, run the following command from the root directory:

```bash
docker compose up -f docker-compose.yml -f docker-compose.e2e.yml
docker compose -f docker-compose.yml -f docker-compose.e2e.yml up
```

### Running the Tests
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/tools-and-integrations/playwright.mdx
Expand Up @@ -244,14 +244,14 @@ test("Playwright: deletes a pokemon", async ({ page }) => {

### Setting the Environment Variables

Copy the `.env.example` file to `.env` and add the Tracetest API token and agent tokens to the `TRACETEST_API_TOKEN` and `TRACETEST_AGENT_API_KEY` variables.
Copy the `.env.template` file to `.env` and add the Tracetest API token and agent tokens to the `TRACETEST_API_TOKEN` and `TRACETEST_AGENT_API_KEY` variables.

### Starting the Pokeshop Demo App

To start the Pokeshop Demo App, run the following command from the root directory:

```bash
docker compose up -f docker-compose.yml -f docker-compose.e2e.yml
docker compose -f docker-compose.yml -f docker-compose.e2e.yml up
```

### Running the Tests
Expand Down

0 comments on commit 18f01ec

Please sign in to comment.