From b4534111b3600aca271c8f16d14661df87118be5 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Thu, 6 Jul 2023 13:31:34 +0000 Subject: [PATCH] test: convert e2e_runner `ignore` to array Previously, the ignore was as a string, but this breaks with the last `fast-glob` update. See: https://app.circleci.com/pipelines/github/angular/angular-cli/31919/workflows/7d68deac-000e-46ef-80f8-4dc259ef61fa/jobs/428958 --- tests/legacy-cli/e2e_runner.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/legacy-cli/e2e_runner.ts b/tests/legacy-cli/e2e_runner.ts index 6f132707ae..47f12c40bb 100644 --- a/tests/legacy-cli/e2e_runner.ts +++ b/tests/legacy-cli/e2e_runner.ts @@ -51,9 +51,9 @@ const argv = yargsParser(process.argv.slice(2), { 'verbose', 'yarn', ], - string: ['devkit', 'glob', 'ignore', 'reuse', 'ng-tag', 'tmpdir', 'ng-version'], + string: ['devkit', 'glob', 'reuse', 'ng-tag', 'tmpdir', 'ng-version'], number: ['nb-shards', 'shard'], - array: ['package'], + array: ['package', 'ignore'], configuration: { 'camel-case-expansion': false, 'dot-notation': false,