describe(\'some test\', function(){
// Could put here a shared variable
it(\'should pass a value\', function(done){
done(null, 1);
});
it(\'a
It is also possible to add to the suit or context object.
In this example, It's added to the suit object
describe('suit', function(){
before(() => {
this.suitData = 'suit';
});
beforeEach(() => {
this.testData = 'test';
});
it('test', done => {
console.log(this.suitData)// => suit
console.log(this.testData)// => test
})
});