diff --git a/fixtures/first/nested/directory/file.json b/fixtures/first/nested/directory/file.json new file mode 100644 index 00000000..e69de29b diff --git a/src/tests/smoke/regular.smoke.ts b/src/tests/smoke/regular.smoke.ts index d383148c..53f161ac 100644 --- a/src/tests/smoke/regular.smoke.ts +++ b/src/tests/smoke/regular.smoke.ts @@ -504,3 +504,12 @@ smoke.suite('Smoke → Regular (relative & ignore)', [ { pattern: '../{first,second}', cwd: 'fixtures/first', ignore: '../first/**' }, { pattern: '../{first,second}', cwd: 'fixtures/first', ignore: '**/first/**' } ]); + +smoke.suite('Smoke -> Regular (negative group)', [ + { + pattern: '**/!(*.md)', + cwd: 'fixtures/first', + broken: true, + issue: 357 + } +])