Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham9411 committed Oct 28, 2023
1 parent 33c8731 commit c9f60fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/parallel/test-runner-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const testFixtures = fixtures.path('test-runner');
'--test',
'--test-timeout',
50,
'test/fixtures/test-runner/timeout.js'
'test/fixtures/test-runner/timeout.js',
];
const child = spawnSync(process.execPath, args);

Expand Down Expand Up @@ -215,9 +215,9 @@ const testFixtures = fixtures.path('test-runner');
// Use test with --loader and --require.
// This case is common since vscode uses --require to load the debugger.
const args = ['--no-warnings',
'--experimental-loader', 'data:text/javascript,',
'--require', fixtures.path('empty.js'),
'--test', join(testFixtures, 'default-behavior', 'index.test.js')];
'--experimental-loader', 'data:text/javascript,',
'--require', fixtures.path('empty.js'),
'--test', join(testFixtures, 'default-behavior', 'index.test.js')];
const child = spawnSync(process.execPath, args);

assert.strictEqual(child.stderr.toString(), '');
Expand Down

0 comments on commit c9f60fe

Please sign in to comment.