File tree 2 files changed +8
-6
lines changed
tests/legacy-cli/e2e/tests/build
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ jobs:
135
135
uses : ./.github/shared-actions/windows-bazel-test
136
136
with :
137
137
test_target_name : e2e_node22
138
- test_args : --esbuild --glob "tests/basic/{ build,rebuild} .ts"
138
+ test_args : --esbuild --glob "tests/build/assets .ts"
139
139
140
140
e2e-package-managers :
141
141
needs : build
@@ -161,7 +161,7 @@ jobs:
161
161
162
162
e2e-snapshots :
163
163
needs : [analyze, build]
164
- if : needs.analyze.outputs.snapshots == 'true'
164
+ # if: needs.analyze.outputs.snapshots == 'true'
165
165
strategy :
166
166
fail-fast : false
167
167
matrix :
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ const isNodeV22orHigher = Number(process.versions.node.split('.', 1)[0]) >= 22;
11
11
export default async function ( ) {
12
12
await writeFile ( 'public/.file' , '' ) ;
13
13
await writeFile ( 'public/test.abc' , 'hello world' ) ;
14
- const originalStats = fs . statSync ( 'public/test.abc' , { bigint : true } ) ;
14
+
15
+ const originalStats = fs . statSync ( 'public/favicon.ico' , { bigint : true } ) ;
15
16
16
17
await ng ( 'build' , '--configuration=development' ) ;
17
18
@@ -22,9 +23,10 @@ export default async function () {
22
23
23
24
// Timestamp preservation only supported with application build system on Node.js v22+
24
25
if ( isNodeV22orHigher && getGlobalVariable ( 'argv' ) [ 'esbuild' ] ) {
25
- const outputStats = fs . statSync ( 'dist/test-project/browser/test.abc' , { bigint : true } ) ;
26
- assert (
27
- originalStats . mtimeMs === outputStats . mtimeMs ,
26
+ const outputStats = fs . statSync ( 'dist/test-project/browser/favicon.ico' , { bigint : true } ) ;
27
+ assert . equal (
28
+ originalStats . mtimeMs ,
29
+ outputStats . mtimeMs ,
28
30
'Asset file modified timestamp should be preserved.' ,
29
31
) ;
30
32
}
You can’t perform that action at this time.
0 commit comments