Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
rluvaton committed Jul 25, 2023
1 parent 8c3dd7e commit 5593418
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/parallel/test-runner-run.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ describe('require(\'node:test\').run', { concurrency: true }, () => {
describe('AbortSignal', () => {
it('should stop watch mode when abortSignal aborts', async () => {
const controller = new AbortController();
const result = await run({
files: [join(testFixtures, 'specific-test-files/success.cjs')],
watch: true,
signal: controller.signal
,
const result = await run({
files: [join(testFixtures, 'specific-test-files/success.cjs')],
watch: true,
signal: controller.signal
,
})
.compose(async function* (source) {
for await (const chunk of source) {
Expand Down

0 comments on commit 5593418

Please sign in to comment.