diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 367f30150a..812106263e 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -87,7 +87,7 @@ jobs: - name: Install playwright deps if: steps.playwright-cache.outputs.cache-hit != 'true' run: yarn playwright install --with-deps - - run: yarn playwright test + - run: yarn playwright test -c apps/web/playwright.config.ts - name: Upload videos if: ${{ always() }} diff --git a/.gitignore b/.gitignore index b17b184657..07b1cd2585 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,11 @@ node_modules # testing coverage +playwright/videos +playwright/screenshots +playwright/artifacts +playwright/results +playwright/reports/* # next.js .next/ diff --git a/package.json b/package.json index 201bdff833..e0f4b09c5e 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "format": "prettier --write \"**/*.{ts,tsx,md}\"", "lint": "turbo run lint", "prepare": "husky install", + "start": "turbo run start", "test": "turbo run test", "type-check": "turbo run type-check" }, diff --git a/turbo.json b/turbo.json index 2a6f39b48f..92a144c85a 100644 --- a/turbo.json +++ b/turbo.json @@ -25,6 +25,7 @@ "lint": { "outputs": [] }, + "start": {}, "test": { "dependsOn": ["@calcom/calendso#build", "@calcom/calendso#db-seed"] },