Skip to content

Commit 242066f

Browse files
refactor: rename --include-test-source to --with-test-source for clarity
1 parent 7ab2a35 commit 242066f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ program
188188
.option('-f, --file <path>', 'Scope search to functions in this file (partial match)')
189189
.option('-k, --kind <kind>', 'Filter to a specific symbol kind')
190190
.option('--no-source', 'Metadata only (skip source extraction)')
191-
.option('--include-test-source', 'Include test source code')
191+
.option('--with-test-source', 'Include test source code')
192192
.option('-T, --no-tests', 'Exclude test/spec files from results')
193193
.option('--include-tests', 'Include test/spec files (overrides excludeTests config)')
194194
.option('-j, --json', 'Output as JSON')
@@ -203,7 +203,7 @@ program
203203
kind: opts.kind,
204204
noSource: !opts.source,
205205
noTests: resolveNoTests(opts),
206-
includeTests: opts.includeTestSource,
206+
includeTests: opts.withTestSource,
207207
json: opts.json,
208208
});
209209
});

0 commit comments

Comments
 (0)