Skip to content

Commit

Permalink
test: add spec for negative groups
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder committed Mar 23, 2022
1 parent 1f82afb commit ee1256b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Empty file.
9 changes: 9 additions & 0 deletions src/tests/smoke/regular.smoke.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
])

0 comments on commit ee1256b

Please sign in to comment.