File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
tests/legacy-cli/e2e/tests/build/prerender Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ import { getGlobalVariable } from '../../../utils/env';
33import { rimraf , writeMultipleFiles } from '../../../utils/fs' ;
44import { match } from 'node:assert' ;
55import { expectToFail } from '../../../utils/utils' ;
6+ import { useSha } from '../../../utils/project' ;
7+ import { installWorkspacePackages } from '../../../utils/packages' ;
68
79export default async function ( ) {
810 const useWebpackBuilder = ! getGlobalVariable ( 'argv' ) [ 'esbuild' ] ;
@@ -13,6 +15,8 @@ export default async function () {
1315 // Forcibly remove in case another test doesn't clean itself up.
1416 await rimraf ( 'node_modules/@angular/ssr' ) ;
1517 await ng ( 'add' , '@angular/ssr' , '--skip-confirmation' ) ;
18+ await useSha ( ) ;
19+ await installWorkspacePackages ( ) ;
1620
1721 await writeMultipleFiles ( {
1822 'src/app/app.component.ts' : `
You can’t perform that action at this time.
0 commit comments