From 18f01ec00f82c7fa7b1820111ca03c9d84f777b0 Mon Sep 17 00:00:00 2001 From: Oscar Reyes Date: Mon, 15 Jan 2024 16:31:15 -0600 Subject: [PATCH] fix(docs): E2E docs fix (#3528) --- docs/docs/tools-and-integrations/cypress.mdx | 4 ++-- docs/docs/tools-and-integrations/playwright.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/tools-and-integrations/cypress.mdx b/docs/docs/tools-and-integrations/cypress.mdx index 3c6d1d1ea0..1865bc6a17 100644 --- a/docs/docs/tools-and-integrations/cypress.mdx +++ b/docs/docs/tools-and-integrations/cypress.mdx @@ -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 diff --git a/docs/docs/tools-and-integrations/playwright.mdx b/docs/docs/tools-and-integrations/playwright.mdx index bea9d4453f..b08aaa188c 100644 --- a/docs/docs/tools-and-integrations/playwright.mdx +++ b/docs/docs/tools-and-integrations/playwright.mdx @@ -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