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
This commit is contained in:
Alan Agius 2023-07-06 13:31:34 +00:00 committed by Douglas Parker
parent 3bb48c1c88
commit b4534111b3

View File

@ -51,9 +51,9 @@ const argv = yargsParser(process.argv.slice(2), {
'verbose', 'verbose',
'yarn', 'yarn',
], ],
string: ['devkit', 'glob', 'ignore', 'reuse', 'ng-tag', 'tmpdir', 'ng-version'], string: ['devkit', 'glob', 'reuse', 'ng-tag', 'tmpdir', 'ng-version'],
number: ['nb-shards', 'shard'], number: ['nb-shards', 'shard'],
array: ['package'], array: ['package', 'ignore'],
configuration: { configuration: {
'camel-case-expansion': false, 'camel-case-expansion': false,
'dot-notation': false, 'dot-notation': false,