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.
1 parent bcac01b commit 45cd923Copy full SHA for 45cd923
packages/plugin-rsc/e2e/fixture.ts
@@ -170,17 +170,20 @@ export async function setupIsolatedFixture(options: {
170
})
171
172
// install
173
+ console.log('[setupIsolatedFixture] before pnpm')
174
await x('pnpm', ['i'], {
175
throwOnError: true,
176
nodeOptions: {
177
cwd: options.dest,
178
stdio: [
179
'ignore',
- process.env.TEST_DEBUG ? 'inherit' : 'ignore',
180
+ // process.env.TEST_DEBUG ? 'inherit' : 'ignore',
181
+ 'inherit',
182
'inherit',
183
],
184
},
185
186
+ console.log('[setupIsolatedFixture] after pnpm')
187
}
188
189
function editFileJson(filepath: string, edit: (s: string) => string) {
0 commit comments