Skip to content

Instantly share code, notes, and snippets.

View devkhan's full-sized avatar

Devesh Khandelwal devkhan

View GitHub Profile
@devkhan
devkhan / mocha-before-and-beforeEach-lifecycles.js
Last active May 18, 2017 16:09 — forked from corywheeler/mocha-before-and-beforeEach-lifecycles.js
Show the order of execution of mocha's before and beforeEach hooks for each describe and each test
describe('highest level describe', function () {
before(function() {
console.log('This is the highest level before')
})
beforeEach(function() {
console.log('This is the highest level beforeEach')
})
it('This is the first highest level test', function() {
console.log('first highest level test')