From 12b4a014e7146a2ce9b341cbdad4811e782b410e Mon Sep 17 00:00:00 2001 From: Konboi Date: Wed, 31 Jan 2024 16:55:39 +0900 Subject: [PATCH] fix --- .github/workflows/playwright.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yaml b/.github/workflows/playwright.yaml index e1e8274..68c9383 100644 --- a/.github/workflows/playwright.yaml +++ b/.github/workflows/playwright.yaml @@ -48,7 +48,7 @@ jobs: - name: Subset run: find tests/*.ts | launchable subset --confidence 80% --flavor browser=${{ matrix.browser }} playwright > launchable-subset.txt - name: Run Playwright tests - run: npm run test --project=${{ matrix.browser }} $(cat launchable-subset.txt) + run: npx playwright test --project=${{ matrix.browser }} $(cat launchable-subset.txt) - name: Record run: launchable record tests playwright report.xml if: always()