Skip to content

Commit 20f5079

Browse files
boneskullclaude
andcommitted
style: move JSDoc comment after all imports in run-tests-v20.js
Per review feedback, moved the JSDoc module documentation to come after all import statements. Note: kept import ordering per project's perfectionist ESLint config (alphabetical), not the Node.js builtin-first convention suggested by the reviewer. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5a9c847 commit 20f5079

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/run-tests-v20.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#!/usr/bin/env node
22
import { globSync } from 'glob';
3+
import { execFileSync } from 'node:child_process';
4+
35
/**
46
* Test runner for Node.js v20
57
*
68
* Node.js v20's `node --test` command doesn't support glob patterns. This
79
* script uses the `glob` package to find test files and passes them to `node
810
* --test`.
911
*/
10-
import { execFileSync } from 'node:child_process';
1112

1213
const pattern = process.argv[2] || 'test/**/*.test.ts';
1314
const files = globSync(pattern);

0 commit comments

Comments
 (0)