瀏覽代碼

Changed test output

Efren Yevale Varela 4 年之前
父節點
當前提交
541c3ab112
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      console.js

+ 1 - 1
console.js

@@ -1,7 +1,7 @@
 runTests = (label, network, tests) => {
   console.log(`--- ${label}`);
   for (test of tests) {
-    console.log(`${label} test ${JSON.stringify(test)}: ${network.run(test)}`);
+    console.log(`${label} test ${JSON.stringify(test)}: ${JSON.stringify(network.run(test))}`);
   }
 }