File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ async function main() {
126
126
const nextVersionUnderTestFullNameAndVersion = `next@${ latestReleaseVersion } ` ;
127
127
128
128
log ( 'installing %O for unit tests' , nextVersionUnderTestFullNameAndVersion ) ;
129
- log ( ` (integration tests use their own Next.js versions)` ) ;
129
+ log ( ' (integration tests use their own Next.js versions)' ) ;
130
130
131
131
// ? Install peer deps manually for Next.js
132
132
const nextLatestReleaseVersionPeerDependencies = await getNextjsReactPeerDependencies (
@@ -141,6 +141,10 @@ async function main() {
141
141
...nextLatestReleaseVersionPeerDependencies
142
142
] ) ;
143
143
144
+ log ( `repairing node_modules after install using \`npm run prepare\`` ) ;
145
+
146
+ await run ( 'npm' , [ 'run' , 'prepare' ] ) ;
147
+
144
148
log ( 'running compatibility tests' ) ;
145
149
146
150
await run ( 'npm' , [ 'run' , 'test:packages:all' ] ) ;
You can’t perform that action at this time.
0 commit comments