You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docstrings generation was requested by @CoderSerio.
* #2 (comment)
The following files were modified:
* `benchmark/bench.ts`
* `benchmark/rm.ts`
* `src/readdir.rs`
* `src/rm.rs`
* Discovers and runs benchmark files in the current directory, optionally filtered by the first command-line argument.
9
+
*
10
+
* Selects files ending with `.ts` (excluding `bench.ts` and declaration files ending with `.d.ts`). If a filter string is provided as the first CLI argument, only files whose names include that substring (case-insensitive) are selected. Logs a message and exits if no files match, logs the number of files found, and imports each matched file to execute its benchmark; errors importing individual files are logged.
11
+
*/
7
12
asyncfunctionrunBenchmarks(){
8
13
constargs=process.argv.slice(2)
9
14
constfilter=args[0]
@@ -38,4 +43,4 @@ async function runBenchmarks() {
* Execute the benchmark suite for the two test scenarios and remove temporary data.
116
+
*
117
+
* Runs the "Flat directory (2000 files)" and "Deep nested directory (depth 100)" benchmark groups sequentially, then deletes the temporary base directory if it exists.
0 commit comments