Pārlūkot izejas kodu

Changed test output

Efren Yevale Varela 4 gadi atpakaļ
vecāks
revīzija
541c3ab112
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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))}`);
   }
 }