We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 978431c commit 2c06852Copy full SHA for 2c06852
lib/test.js
@@ -5,25 +5,6 @@ var path = require('path');
5
var inherits = require('util').inherits;
6
var EventEmitter = require('events').EventEmitter;
7
8
-/**
9
- * Transitions:
10
- *
11
- * From -> To : Triggered by
12
13
- * PENDING -> RUNNING : Results object calls .run
14
- * RUNNING -> FINISHED : .end no remaining subtest
15
- * RUNNING -> SUBTESTS : .end with subtests
16
- * SUBTESTS -> FINISHED : .end after all subtests end
17
18
- * .end is called when:
19
20
- * - it's called by the test itself
21
- * - there is a plan and:
22
- * - The assertion count + number of children == plan
23
24
- */
25
-
26
27
module.exports = Test;
28
29
var nextTick = typeof setImmediate !== 'undefined'
0 commit comments