generator now publishes directly to a view where you can interact with your new bonfire

This commit is contained in:
Michael Q Larson
2015-01-25 23:10:05 -08:00
parent 7c6cbbf221
commit c20aa1697c
7 changed files with 170 additions and 92 deletions

View File

@@ -216,7 +216,8 @@ var runTests = function(err, data) {
userTests.forEach(function(test, ix, arr){
try {
if (test) {
var output = eval(reassembleTest(test, data));
var test = JSON.stringify(reassembleTest(test, data));
var output = eval(test);
}
} catch(error) {
allTestsPassed = false;