@@ -7,6 +7,7 @@ ng_integration_test(
7
7
"yarn ng build" ,
8
8
"node ./dist/ssr-benchmarks/server/server.mjs" ,
9
9
],
10
+ tags = ["manual" ],
10
11
)
11
12
12
13
## This target is intended to run the benchmark in a browser
@@ -17,27 +18,24 @@ ng_integration_test(
17
18
commands = [
18
19
"yarn install --cache-folder ./.yarn_local_cache" ,
19
20
20
- # The patch only applies for the browser target (to remove the DOM Emulation polyfills and browser incompatible code)
21
- "yarn patch" ,
22
21
#
23
22
"NG_BUILD_MANGLE=0 yarn ng build --configuration production,browser" ,
24
23
"yarn http-server ./dist" ,
25
24
],
25
+ tags = ["manual" ],
26
26
)
27
27
28
28
# This target is mostly intended for investigating via the devTools using the flamechart
29
29
ng_integration_test (
30
30
name = "run_browser_emulated_dom" ,
31
31
commands = [
32
32
"yarn install --cache-folder ./.yarn_local_cache" ,
33
- # We keep the emulated dom in this target
34
- # But still need to drop the node import which doesn't work in browsers.
35
- "git apply patches/@angular-devkit+build-angular++@angular+build+19.0.0-next.6+require.patch" ,
36
33
37
34
# We keep the symbols with the NG_BUILD_MANGLE flag
38
35
"NG_BUILD_MANGLE=0 yarn ng build" ,
39
36
"yarn http-server ./dist" ,
40
37
],
38
+ tags = ["manual" ],
41
39
)
42
40
43
41
# This is a target to investigate with deopt explorer (https://github.com/microsoft/deoptexplorer-vscode)
@@ -58,4 +56,5 @@ ng_integration_test(
58
56
--detailed-line-info \
59
57
./dist/ssr-benchmarks/server/server.mjs narrowRun" ,
60
58
],
59
+ tags = ["manual" ],
61
60
)
0 commit comments