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';
3
3
import { rimraf , writeMultipleFiles } from '../../../utils/fs' ;
4
4
import { match } from 'node:assert' ;
5
5
import { expectToFail } from '../../../utils/utils' ;
6
+ import { useSha } from '../../../utils/project' ;
7
+ import { installWorkspacePackages } from '../../../utils/packages' ;
6
8
7
9
export default async function ( ) {
8
10
const useWebpackBuilder = ! getGlobalVariable ( 'argv' ) [ 'esbuild' ] ;
@@ -13,6 +15,8 @@ export default async function () {
13
15
// Forcibly remove in case another test doesn't clean itself up.
14
16
await rimraf ( 'node_modules/@angular/ssr' ) ;
15
17
await ng ( 'add' , '@angular/ssr' , '--skip-confirmation' ) ;
18
+ await useSha ( ) ;
19
+ await installWorkspacePackages ( ) ;
16
20
17
21
await writeMultipleFiles ( {
18
22
'src/app/app.component.ts' : `
You can’t perform that action at this time.
0 commit comments