mirror of
https://github.com/gundb/panic-server.git
synced 2026-05-07 03:00:26 -04:00
Created an event emitter instance for reporters and the test stack. Currently, the only event that fires is "begin". All tests are now named, whether by their given name or as the name "Anonymous".
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
/*jslint node: true*/
|
|
|
|
/*
|
|
Used to notify reporters and
|
|
the test stack when "done",
|
|
"progress", "fail" and "pass"
|
|
events happen.
|
|
*/
|
|
|
|
var Emitter = require('events');
|
|
module.exports = new Emitter();
|