We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f8027b + fb5e40d commit db8e886Copy full SHA for db8e886
.github/workflows/ci-rsc.yml
@@ -63,7 +63,7 @@ jobs:
63
- run: pnpm -C packages/plugin-rsc exec playwright install ${{ matrix.browser }}
64
- run: pnpm -C packages/plugin-rsc test-e2e-ci --project=${{ matrix.browser }}
65
env:
66
- TEST_ISOLATED: true
+ TEST_ISOLATED: ${{ matrix.os != 'windows-latest' }}
67
- uses: actions/upload-artifact@v4
68
if: always()
69
with:
packages/plugin-rsc/e2e/basic.test.ts
@@ -107,7 +107,7 @@ test.describe.configure({ mode: 'serial' })
107
108
test.describe.only(() => {
109
// disabled by default
110
- if (!process.env.TEST_ISOLATED) return
+ if (process.env.TEST_ISOLATED !== 'true') return
111
112
let tmpRoot = '/tmp/test-vite-rsc'
113
test.beforeAll(async () => {
0 commit comments