Skip to content

Commit db8e886

Browse files
authored
Merge branch 'main' into 07-06-test_debug_flaky
2 parents 8f8027b + fb5e40d commit db8e886

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-rsc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- run: pnpm -C packages/plugin-rsc exec playwright install ${{ matrix.browser }}
6464
- run: pnpm -C packages/plugin-rsc test-e2e-ci --project=${{ matrix.browser }}
6565
env:
66-
TEST_ISOLATED: true
66+
TEST_ISOLATED: ${{ matrix.os != 'windows-latest' }}
6767
- uses: actions/upload-artifact@v4
6868
if: always()
6969
with:

packages/plugin-rsc/e2e/basic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ test.describe.configure({ mode: 'serial' })
107107

108108
test.describe.only(() => {
109109
// disabled by default
110-
if (!process.env.TEST_ISOLATED) return
110+
if (process.env.TEST_ISOLATED !== 'true') return
111111

112112
let tmpRoot = '/tmp/test-vite-rsc'
113113
test.beforeAll(async () => {

0 commit comments

Comments
 (0)