mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
chore: fix flaky integration::lint::compact (#16075)
This commit is contained in:
parent
e64af6260a
commit
fcb20ab952
2 changed files with 3 additions and 4 deletions
|
@ -44,7 +44,7 @@ itest!(json {
|
|||
|
||||
itest!(compact {
|
||||
args:
|
||||
"lint --compact lint/without_config/file1.js lint/without_config/file2.ts lint/without_config/ignored_file.tss",
|
||||
"lint --compact lint/without_config/file1.js lint/without_config/ignored_file.tss",
|
||||
output: "lint/expected_compact.out",
|
||||
exit_code: 1,
|
||||
});
|
||||
|
|
5
cli/tests/testdata/lint/expected_compact.out
vendored
5
cli/tests/testdata/lint/expected_compact.out
vendored
|
@ -1,5 +1,4 @@
|
|||
[WILDCARD]file1.js: line 1, col 1 - Ignore directive requires lint rule name(s) (ban-untagged-ignore)
|
||||
[WILDCARD]file1.js: line 2, col 15 - Empty block statement (no-empty)
|
||||
[WILDCARD]file2.ts: line 3, col 14 - Empty block statement (no-empty)
|
||||
Found 3 problems
|
||||
Checked 2 files
|
||||
Found 2 problems
|
||||
Checked 1 file
|
||||
|
|
Loading…
Reference in a new issue