Skip to content

Commit ff38f6e

Browse files
committed
test: --no-frozen-lockfile
1 parent 6662a76 commit ff38f6e

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

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

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,21 @@ test.describe('react-server-dom-webpack', () => {
103103
dest: tmpRoot,
104104
})
105105
const version = (await import('react')).version
106-
await x('pnpm', ['i', `react-server-dom-webpack@${version}`], {
107-
throwOnError: true,
108-
nodeOptions: {
109-
cwd: tmpRoot,
110-
stdio: [
111-
'ignore',
112-
process.env.TEST_DEBUG ? 'inherit' : 'ignore',
113-
'inherit',
114-
],
106+
await x(
107+
'pnpm',
108+
['i', '--no-frozen-lockfile', `react-server-dom-webpack@${version}`],
109+
{
110+
throwOnError: true,
111+
nodeOptions: {
112+
cwd: tmpRoot,
113+
stdio: [
114+
'ignore',
115+
process.env.TEST_DEBUG ? 'inherit' : 'ignore',
116+
'inherit',
117+
],
118+
},
115119
},
116-
})
120+
)
117121
})
118122

119123
test.describe('dev', () => {

0 commit comments

Comments
 (0)