fix(release): mount normalization helper in Docker E2E

This commit is contained in:
Peter Steinberger
2026-07-17 16:25:37 +01:00
parent 5a8b25cc9a
commit c69a75f697
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -400,6 +400,7 @@ docker_e2e_harness_mount_args() {
DOCKER_E2E_HARNESS_ARGS=(
-v "$ROOT_DIR/scripts/e2e:/app/scripts/e2e:ro"
-v "$ROOT_DIR/scripts/lib:/app/scripts/lib:ro"
-v "$ROOT_DIR/packages/normalization-core/src:/app/packages/normalization-core/src:ro"
-v "$ROOT_DIR/test/e2e/qa-lab:/app/test/e2e/qa-lab:ro"
-v "$ROOT_DIR/test/helpers:/app/test/helpers:ro"
-v "$ROOT_DIR/scripts/windows-cmd-helpers.mjs:/app/scripts/windows-cmd-helpers.mjs:ro"
+3
View File
@@ -4207,6 +4207,9 @@ heartbeat_elapsed="\${BASH_REMATCH[1]}"
expect(helper).toContain(
'-v "$ROOT_DIR/scripts/windows-cmd-helpers.mjs:/app/scripts/windows-cmd-helpers.mjs:ro"',
);
expect(helper).toContain(
'-v "$ROOT_DIR/packages/normalization-core/src:/app/packages/normalization-core/src:ro"',
);
expect(helper).toContain('-v "$ROOT_DIR/test/e2e/qa-lab:/app/test/e2e/qa-lab:ro"');
expect(helper).toContain('-v "$ROOT_DIR/test/helpers:/app/test/helpers:ro"');
});