From 8a17d5d819aa781478fdd97eab7f746a1b46197a Mon Sep 17 00:00:00 2001 From: Jakob Rosenberg Date: Tue, 15 Mar 2022 08:49:23 +0100 Subject: [PATCH] test: fix missing reports --- test/suite/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suite/index.js b/test/suite/index.js index 9943ea08..0583b862 100644 --- a/test/suite/index.js +++ b/test/suite/index.js @@ -1,7 +1,7 @@ async function run() { const { probs } = await import("probs"); - await probs([__dirname + "/integration"], { runner: "main", concurrency: 1 }); + await probs([__dirname + "/integration"], { runner: "main", concurrency: 1, reporter: 'consoleReporter' }); } module.exports = {