github.com/jonasnick/go-ethereum@v0.7.12-0.20150216215225-22176f05d387/eth/test/tests/common.js (about) 1 function log(text) { 2 console.log("[JS TEST SCRIPT] " + text); 3 } 4 5 function sleep(seconds) { 6 var now = new Date().getTime(); 7 while(new Date().getTime() < now + seconds){} 8 } 9