mocha hooks not working code example
Example: mocha hooks not working
describe('Hooks', function() {
console.log('Prints');
it('before', function() {
before('Fire Up', function() {
console.log('Nope from before');
});
});
it('after', function() {
after('Cleanup', function() {
console.log('Nope from after');
});
})
});