Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: remove spaces from test runner test names
  • Loading branch information
tniessen authored Apr 26, 2023
commit 3b64da6dbb1e16c8b04ea45d6ea5224dd3693b08
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