step-test-explain@0.2.0 test /Users/carsonnwright/Projects/step-test-explain node test.js
function (){
Speak.say("Hello");
}
function (){
Speak.say("Goodbye");
}
function (){
var t = this;
console.log = function(data){
t.log = data;
};
}
function (){
Speak.speak();
}
function (){
var log = JSON.stringify(this.log);
var e = JSON.stringify(["Hello", "Goodbye"]);
this.ok(log == e);
}