We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c32d0d commit a95d3afCopy full SHA for a95d3af
test/runner/codecept_test.js
@@ -170,9 +170,9 @@ describe('CodeceptJS Runner', () => {
170
it('should filter by feature tags', done => {
171
process.chdir(codecept_dir)
172
exec(`${codecept_run_config('codecept.grep.2.js')} --grep @feature_grep --invert`, (err, stdout) => {
173
- stdout.should.not.include('@feature_grep') // feature
174
- stdout.should.not.include('grep message 1')
175
- 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
176
assert(!err)
177
done()
178
})
0 commit comments