From c0fc32e521dbd244397454101b25d1ec7c23dcf5 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..edcf0aa 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: playwright test --project=${{ matrix.browser }} $(cat launchable-subset.txt) - name: Record run: launchable record tests playwright report.xml if: always()