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 53fd219 commit 1c6e181Copy full SHA for 1c6e181
tests/prepare.mjs
@@ -106,6 +106,11 @@ const promises = fixtures.map((fixture) =>
106
}
107
output.stderr?.pipe(addPrefix).pipe(process.stderr)
108
return output.finally(async () => {
109
+ const npmListPromise = execaCommand(`npm list next`, { cwd, stdio: 'pipe' })
110
+ npmListPromise.stdout?.pipe(addPrefix).pipe(process.stdout)
111
+ npmListPromise.stderr?.pipe(addPrefix).pipe(process.stderr)
112
+ await npmListPromise
113
+
114
await setNextVersionInFixture(cwd, 'latest', {
115
logPrefix: `[${fixture}] `,
116
operation: 'revert',
0 commit comments