We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9afa82 commit d98c691Copy full SHA for d98c691
run.js
@@ -653,7 +653,17 @@ function spawnTest(){
653
654
new Parallel(envelope[i]).spawn(webworkerResults).then(result=>{
655
656
- console.log(result.output);
+
657
658
+ var printError = false;
659
+ do{
660
+ try{
661
+ console.log(result.output);
662
+ } catch(e){
663
+ printError = true;
664
+ }
665
+ } while(printError) // as we are logging async we risk to try to write to a locked file.
666
667
score.ok.total += result.score.ok.total;
668
score.fail.total += result.score.fail.total;
669
score.skip.total += result.score.skip.total;
0 commit comments