You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside a large mocha test suite, it's quite difficult to hunt down pending specs of PRs past. It would be awesome to be able to mark them as warnings to pester each other to implement or delete them.
OK
describe('some module',function(){it('implements a test',function(){expect(true).to.be.ok;});});
Error
describe('some module',function(){it('does not yet implement a test');it.skip('implemented but skipped',function(){expect(false).to.be.ok;});});describe.skip('another module',function(){// ...});
The text was updated successfully, but these errors were encountered:
Inside a large mocha test suite, it's quite difficult to hunt down pending specs of PRs past. It would be awesome to be able to mark them as warnings to pester each other to implement or delete them.
OK
Error
The text was updated successfully, but these errors were encountered: