From 3b64da6dbb1e16c8b04ea45d6ea5224dd3693b08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Wed, 26 Apr 2023 20:05:06 +0200 Subject: [PATCH] test: remove spaces from test runner test names --- test/parallel/test-runner-concurrency.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-runner-concurrency.js b/test/parallel/test-runner-concurrency.js index 4eab5ba16d0140..4f2a99c2734fe8 100644 --- a/test/parallel/test-runner-concurrency.js +++ b/test/parallel/test-runner-concurrency.js @@ -10,7 +10,7 @@ const os = require('node:os'); tmpdir.refresh(); -describe('Concurrency option (boolean) = true ', { concurrency: true }, () => { +describe('Concurrency option (boolean) = true', { concurrency: true }, () => { let isFirstTestOver = false; it('should start the first test', () => new Promise((resolve) => { setImmediate(() => { isFirstTestOver = true; resolve(); }); @@ -22,7 +22,7 @@ describe('Concurrency option (boolean) = true ', { concurrency: true }, () => { }); describe( - 'Concurrency option (boolean) = false ', + 'Concurrency option (boolean) = false', { concurrency: false }, () => { let isFirstTestOver = false;