Skip to content

Commit cb76f4f

Browse files
tniessendanielleadams
authored andcommitted
test: remove spaces from test runner test names
PR-URL: #47733 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Matthew Aitken <[email protected]> Reviewed-By: Deokjin Kim <[email protected]>
1 parent 3746daf commit cb76f4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-runner-concurrency.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const os = require('node:os');
1010

1111
tmpdir.refresh();
1212

13-
describe('Concurrency option (boolean) = true ', { concurrency: true }, () => {
13+
describe('Concurrency option (boolean) = true', { concurrency: true }, () => {
1414
let isFirstTestOver = false;
1515
it('should start the first test', () => new Promise((resolve) => {
1616
setImmediate(() => { isFirstTestOver = true; resolve(); });
@@ -22,7 +22,7 @@ describe('Concurrency option (boolean) = true ', { concurrency: true }, () => {
2222
});
2323

2424
describe(
25-
'Concurrency option (boolean) = false ',
25+
'Concurrency option (boolean) = false',
2626
{ concurrency: false },
2727
() => {
2828
let isFirstTestOver = false;

0 commit comments

Comments
 (0)