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))}`);
   }
 }