From dc3a7d5174aaaee8bfafe80403ac0416ccf09f85 Mon Sep 17 00:00:00 2001 From: cambiph Date: Tue, 11 Aug 2020 11:32:20 +0200 Subject: [PATCH] Geef reporter options door als array cfr https://github.com/mochajs/mocha/pull/4225 --- .mocharc.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.mocharc.js b/.mocharc.js index 6745f9f..b3ba27a 100644 --- a/.mocharc.js +++ b/.mocharc.js @@ -1,9 +1,9 @@ module.exports = { "full-trace": true, "reporter": 'xunit', - "reporter-option": { - "output": "results.xml" - }, + "reporter-option": [ + 'output=results.xml' + ], "spec": ["../../test/**/*.test.js"], "timeout": '10000' };