Skip to content

Commit

Permalink
test: convert e2e_runner ignore to array
Browse files Browse the repository at this point in the history
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
(cherry picked from commit b453411)
  • Loading branch information
alan-agius4 authored and dgp1130 committed Jul 6, 2023
1 parent 7016cee commit 258cde5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/legacy-cli/e2e_runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 258cde5

Please sign in to comment.