Skip to content

Commit

Permalink
test: remove spaces from test runner test names
Browse files Browse the repository at this point in the history
PR-URL: nodejs#47733
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
  • Loading branch information
tniessen committed Apr 27, 2023
1 parent 6700aac commit 36e4e3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-runner-concurrency.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(); });
Expand All @@ -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;
Expand Down

0 comments on commit 36e4e3d

Please sign in to comment.