소스 검색

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