Skip to content

Commit e3da641

Browse files
authored
feat: allow calling hook methods (#5231)
* feat(suite): allow calling hook methods * add tests and docs * fix * address comment
1 parent 05097db commit e3da641

File tree

4 files changed

+45
-8
lines changed

4 files changed

+45
-8
lines changed

docs/index.md

+11
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,17 @@ describe('my suite', () => {
334334

335335
_If you do not need to use_ Mocha's context, lambdas should work. Be aware that using lambdas will be more painful to refactor if the need eventually arises!
336336

337+
Alternatively, you can override certain context variables, such as test timeouts, by chain-calling methods of the created tests and/or hooks:
338+
339+
```js
340+
describe('my suite', () => {
341+
beforeEach(() => {}).timeout(1000);
342+
it('my test', () => {
343+
assert.ok(true);
344+
}).timeout(1000);
345+
}).timeout(1000);
346+
```
347+
337348
## Hooks
338349

339350
With its default "BDD"-style interface, Mocha provides the hooks `before()`, `after()`, `beforeEach()`, and `afterEach()`. These should be used to set up preconditions and clean up after your tests.

lib/interfaces/common.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = function (suites, context, mocha) {
5757
* @param {Function} fn
5858
*/
5959
before: function (name, fn) {
60-
suites[0].beforeAll(name, fn);
60+
return suites[0].beforeAll(name, fn);
6161
},
6262

6363
/**
@@ -67,7 +67,7 @@ module.exports = function (suites, context, mocha) {
6767
* @param {Function} fn
6868
*/
6969
after: function (name, fn) {
70-
suites[0].afterAll(name, fn);
70+
return suites[0].afterAll(name, fn);
7171
},
7272

7373
/**
@@ -77,7 +77,7 @@ module.exports = function (suites, context, mocha) {
7777
* @param {Function} fn
7878
*/
7979
beforeEach: function (name, fn) {
80-
suites[0].beforeEach(name, fn);
80+
return suites[0].beforeEach(name, fn);
8181
},
8282

8383
/**
@@ -87,7 +87,7 @@ module.exports = function (suites, context, mocha) {
8787
* @param {Function} fn
8888
*/
8989
afterEach: function (name, fn) {
90-
suites[0].afterEach(name, fn);
90+
return suites[0].afterEach(name, fn);
9191
},
9292

9393
suite: {

lib/suite.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Suite.prototype.beforeAll = function (title, fn) {
257257
var hook = this._createHook(title, fn);
258258
this._beforeAll.push(hook);
259259
this.emit(constants.EVENT_SUITE_ADD_HOOK_BEFORE_ALL, hook);
260-
return this;
260+
return hook;
261261
};
262262

263263
/**
@@ -281,7 +281,7 @@ Suite.prototype.afterAll = function (title, fn) {
281281
var hook = this._createHook(title, fn);
282282
this._afterAll.push(hook);
283283
this.emit(constants.EVENT_SUITE_ADD_HOOK_AFTER_ALL, hook);
284-
return this;
284+
return hook;
285285
};
286286

287287
/**
@@ -305,7 +305,7 @@ Suite.prototype.beforeEach = function (title, fn) {
305305
var hook = this._createHook(title, fn);
306306
this._beforeEach.push(hook);
307307
this.emit(constants.EVENT_SUITE_ADD_HOOK_BEFORE_EACH, hook);
308-
return this;
308+
return hook;
309309
};
310310

311311
/**
@@ -329,7 +329,7 @@ Suite.prototype.afterEach = function (title, fn) {
329329
var hook = this._createHook(title, fn);
330330
this._afterEach.push(hook);
331331
this.emit(constants.EVENT_SUITE_ADD_HOOK_AFTER_EACH, hook);
332-
return this;
332+
return hook;
333333
};
334334

335335
/**

test/unit/timeout.spec.js

+26
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,31 @@ describe('timeouts', function () {
7070
});
7171
});
7272
});
73+
74+
describe('chaining calls', function () {
75+
before(function (done) {
76+
setTimeout(function () {
77+
done();
78+
}, 50);
79+
}).timeout(1500);
80+
81+
it('should allow overriding via chaining', function (done) {
82+
setTimeout(function () {
83+
done();
84+
}, 50);
85+
}).timeout(1500);
86+
87+
describe('suite-level', function () {
88+
it('should work with timeout(0)', function (done) {
89+
setTimeout(done, 1);
90+
});
91+
92+
describe('nested suite', function () {
93+
it('should work with timeout(0)', function (done) {
94+
setTimeout(done, 1);
95+
});
96+
});
97+
}).timeout(1000);
98+
});
7399
});
74100
});

0 commit comments

Comments
 (0)