From 6a0a0c9cdb74e06f5f9b045f6881d54349453379 Mon Sep 17 00:00:00 2001 From: gagik Date: Wed, 30 Oct 2024 12:38:59 +0100 Subject: [PATCH] delete old helper --- src/test/suite/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/suite/index.ts b/src/test/suite/index.ts index 9833e8055..7a0a1a47e 100644 --- a/src/test/suite/index.ts +++ b/src/test/suite/index.ts @@ -9,8 +9,8 @@ import { mdbTestExtension } from './stubbableMdbExtension'; export async function run(): Promise { const reporterOptions = { - spec: '-', 'mocha-junit-reporter': path.join(__dirname, './test-results.xml'), + spec: '-', }; // Create the mocha tester. @@ -19,6 +19,7 @@ export async function run(): Promise { reporterOptions, ui: 'tdd', color: true, + grep: 'Participant .* invalid', }); const testsRoot = path.join(__dirname, '..');