Home | History | Annotate | Download | only in mocha

Lines Matching refs:slow

849 Context.prototype.slow = function(ms){
850 this.runnable().slow(ms);
1471 * - `slow` milliseconds to wait before considering a test slow
1493 if (options.slow) this.slow(options.slow);
1757 * @param {Number} slow
1762 Mocha.prototype.slow = function(slow){
1763 this.suite.slow(slow);
2048 , 'slow': 31
2231 var medium = test.slow() / 2;
2232 test.speed = test.duration > test.slow()
2233 ? 'slow'
2552 if ('slow' == test.speed) {
4363 * Set & get slow `ms`.
4370 Runnable.prototype.slow = function(ms){
5384 suite.slow(this.slow());
5422 * Set slow `ms` or short-hand such as "2s".
5429 Suite.prototype.slow = function(ms){
5432 debug('slow %d', ms);
5472 hook.slow(this.slow());
5499 hook.slow(this.slow());
5526 hook.slow(this.slow());
5553 hook.slow(this.slow());
5572 suite.slow(this.slow());
5591 test.slow(this.slow());