From b517468df72d1f1dce8de2846086b61cd2bf0a7e Mon Sep 17 00:00:00 2001 From: Scott Tolinski Date: Fri, 1 Nov 2024 14:57:56 -0600 Subject: [PATCH] more changes --- .github/workflows/playwright-tests.yml | 4 ++-- playwright.config.ts | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/playwright-tests.yml b/.github/workflows/playwright-tests.yml index 31466dd17..77cde7c19 100644 --- a/.github/workflows/playwright-tests.yml +++ b/.github/workflows/playwright-tests.yml @@ -42,7 +42,7 @@ jobs: run: pnpm db:generate - name: Install playwright browsers - run: pnpx playwright install --with-deps + run: pnpm exec playwright install --with-deps - name: Run Playwright tests - run: pnpx playwright test + run: pnpm exec playwright test diff --git a/playwright.config.ts b/playwright.config.ts index 6475ba2d5..0d788ff09 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -1,6 +1,4 @@ -import type { PlaywrightTestConfig } from '@playwright/test'; - -const config: PlaywrightTestConfig = { +const config = { webServer: { command: 'pnpm build:svelte && pnpm preview', port: 4173,