mocha-steps
mocha-steps copied to clipboard
Sequential scenarios for mocha
why not to add minor steps (such as notification check) that won't skip next steps if it failed. Yes we can use 'it' instead, but 'mstep' (or any other name),...
I have written some mocha-steps tests, and when the test failed in the step, the after method is not getting called
Would be nice to be able to use mocha-steps in browser tests too.
The skip method in mocha only skips the current test case, not the others. But within a step, the behavior of this.skip is different: subsequent steps get ignored Example: ```...
While debugging (via VS Code) I see that there is a "this" object available within a step, and it has a `this.test.title` property which has the title of the current...
Bumps [minimatch](https://github.com/isaacs/minimatch) to 5.0.1 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `minimatch` from 3.0.4 to 5.0.1 Changelog Sourced from minimatch's changelog. change log 9.0...
Bumps [minimist](https://github.com/minimistjs/minimist) to 1.2.8 and updates ancestor dependencies [minimist](https://github.com/minimistjs/minimist), [mocha](https://github.com/mochajs/mocha) and [mkdirp](https://github.com/isaacs/node-mkdirp). These dependencies need to be updated together. Updates `minimist` from 1.2.0 to 1.2.8 Changelog Sourced from minimist's changelog....
We have test code along the lines of: ``` describe('Some group', async () => { step('Set up', async () => { // ... }); step('Some category', async () => {...