Skip to content

Commit fb5e40d

Browse files
authored
ci(rsc): disable TEST_ISOLATED on windows (#558)
1 parent 840f0b1 commit fb5e40d

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
@@ -105,7 +105,7 @@ test.describe('build-react-compiler', () => {
105105

106106
test.describe(() => {
107107
// disabled by default
108-
if (!process.env.TEST_ISOLATED) return
108+
if (process.env.TEST_ISOLATED !== 'true') return
109109

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

0 commit comments

Comments
 (0)