From 3cece92179937d7c05bcaa892006713e881ed58f Mon Sep 17 00:00:00 2001 From: Bronley Plumb Date: Wed, 22 Jan 2025 08:42:02 -0500 Subject: [PATCH] Give slow test more time to complete --- bsc-plugin/src/plugin.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bsc-plugin/src/plugin.spec.ts b/bsc-plugin/src/plugin.spec.ts index 4ed96053..ea5791a9 100644 --- a/bsc-plugin/src/plugin.spec.ts +++ b/bsc-plugin/src/plugin.spec.ts @@ -2296,7 +2296,8 @@ describe('RooibosPlugin', () => { [['mocha'], 'rooibos_MochaTestReporter'], [['JUnit', 'MyCustomReporter'], `rooibos_JUnitTestReporter${sep}MyCustomReporter`] ]; - it('adds custom test reporters', async () => { + it('adds custom test reporters', async function () { + this.timeout(10_000); for (const [reporters, expected] of params) { setupProgram({ rootDir: _rootDir,