Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed Jan 6, 2025
1 parent 2c32d0d commit a95d3af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/runner/codecept_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ describe('CodeceptJS Runner', () => {
it('should filter by feature tags', done => {
process.chdir(codecept_dir)
exec(`${codecept_run_config('codecept.grep.2.js')} --grep @feature_grep --invert`, (err, stdout) => {
stdout.should.not.include('@feature_grep') // feature
stdout.should.not.include('grep message 1')
stdout.should.not.include('grep message 2')
debug(stdout)
stdout.should.include('0 passed')
stdout.should.include('No tests found by pattern: /@feature_grep/') // feature
assert(!err)
done()
})
Expand Down

0 comments on commit a95d3af

Please sign in to comment.