From fdc66a46b64374419c2611059b6484a04b905c8b Mon Sep 17 00:00:00 2001 From: jonambas Date: Thu, 11 Apr 2024 08:48:03 -0400 Subject: [PATCH] test: rename test dir --- .gitignore | 2 +- {playwright => e2e}/codegen.spec.ts | 0 {playwright => e2e}/parser.spec.ts | 0 playwright.config.ts | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename {playwright => e2e}/codegen.spec.ts (100%) rename {playwright => e2e}/parser.spec.ts (100%) diff --git a/.gitignore b/.gitignore index 553383b..4820fda 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,4 @@ styled-system-studio /test-results/ /playwright-report/ /blob-report/ -/playwright/.cache/ +/e2e/.cache/ diff --git a/playwright/codegen.spec.ts b/e2e/codegen.spec.ts similarity index 100% rename from playwright/codegen.spec.ts rename to e2e/codegen.spec.ts diff --git a/playwright/parser.spec.ts b/e2e/parser.spec.ts similarity index 100% rename from playwright/parser.spec.ts rename to e2e/parser.spec.ts diff --git a/playwright.config.ts b/playwright.config.ts index 8e2ddbc..87f3456 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -4,7 +4,7 @@ import { defineConfig, devices } from '@playwright/test'; * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ - testDir: './playwright', + testDir: './e2e', fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0,