From 5772abcb7f43108844a11b8a8ebe5781e18f3ca0 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Mon, 20 Nov 2023 13:07:24 +0000 Subject: [PATCH] build: add missing args concat in snapshots e2e tests Prior to this change, all snapshot tests were being executed using webpack (cherry picked from commit e859784c8dc572a3967b92e811986770296f9e1b) --- tests/legacy-cli/e2e.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/legacy-cli/e2e.bzl b/tests/legacy-cli/e2e.bzl index ee5a06b1ff18..d190c699c446 100644 --- a/tests/legacy-cli/e2e.bzl +++ b/tests/legacy-cli/e2e.bzl @@ -165,7 +165,7 @@ def _e2e_suite(name, runner, type, data, toolchain_name = "", toolchain = None): data = data, toolchain = toolchain, shard_count = TEST_SHARD_COUNT, - templated_args = [ + templated_args = args + [ "--ng-snapshots", "--glob=%s" % _to_glob(tests) if tests else "", "--ignore=%s" % _to_glob(ignore) if ignore else "",