From 2c068521e2db12327ee381cb09a5a2b81af7d06c Mon Sep 17 00:00:00 2001 From: Stephen Sugden Date: Mon, 14 Oct 2013 12:09:17 -0700 Subject: [PATCH] Remove comment block That was just me thinking out loud --- lib/test.js | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/lib/test.js b/lib/test.js index 5edb47fe..9a7199a8 100644 --- a/lib/test.js +++ b/lib/test.js @@ -5,25 +5,6 @@ var path = require('path'); var inherits = require('util').inherits; var EventEmitter = require('events').EventEmitter; -/** - * Transitions: - * - * From -> To : Triggered by - * - * PENDING -> RUNNING : Results object calls .run - * RUNNING -> FINISHED : .end no remaining subtest - * RUNNING -> SUBTESTS : .end with subtests - * SUBTESTS -> FINISHED : .end after all subtests end - * - * .end is called when: - * - * - it's called by the test itself - * - there is a plan and: - * - The assertion count + number of children == plan - * - */ - - module.exports = Test; var nextTick = typeof setImmediate !== 'undefined'