Skip to content

Commit 874e6b2

Browse files
committed
ci: debug
1 parent 2249327 commit 874e6b2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,12 @@ test.describe.only(() => {
109109

110110
let tmpRoot = '/tmp/test-vite-rsc'
111111
test.beforeAll(async () => {
112-
await setupIsolatedFixture({ src: 'examples/basic', dest: tmpRoot })
112+
try {
113+
await setupIsolatedFixture({ src: 'examples/basic', dest: tmpRoot })
114+
} catch (e) {
115+
console.error('[setupIsolatedFixture]', e)
116+
throw e
117+
}
113118
})
114119

115120
test.describe('dev-isolated', () => {

0 commit comments

Comments
 (0)