Skip to content

Commit bbf7f75

Browse files
committed
test: improve resilience of asset timestamp E2E test
1 parent 5c9b371 commit bbf7f75

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
uses: ./.github/shared-actions/windows-bazel-test
136136
with:
137137
test_target_name: e2e_node22
138-
test_args: --esbuild --glob "tests/basic/{build,rebuild}.ts"
138+
test_args: --esbuild --glob "tests/build/assets.ts"
139139

140140
e2e-package-managers:
141141
needs: build
@@ -161,7 +161,7 @@ jobs:
161161

162162
e2e-snapshots:
163163
needs: [analyze, build]
164-
if: needs.analyze.outputs.snapshots == 'true'
164+
# if: needs.analyze.outputs.snapshots == 'true'
165165
strategy:
166166
fail-fast: false
167167
matrix:

tests/legacy-cli/e2e/tests/build/assets.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ const isNodeV22orHigher = Number(process.versions.node.split('.', 1)[0]) >= 22;
1111
export default async function () {
1212
await writeFile('public/.file', '');
1313
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 });
1516

1617
await ng('build', '--configuration=development');
1718

@@ -22,9 +23,10 @@ export default async function () {
2223

2324
// Timestamp preservation only supported with application build system on Node.js v22+
2425
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,
2830
'Asset file modified timestamp should be preserved.',
2931
);
3032
}

0 commit comments

Comments
 (0)