@travetto/test 8.0.0-alpha.2 → 8.0.0-alpha.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,12 @@ import { IsPrivate } from '@travetto/schema';
4
4
 
5
5
  import { runTests, type TestConsumerType } from './bin/run.ts';
6
6
 
7
- /** Direct test invocation */
7
+ /**
8
+ * Run tests directly from an import or source file with optional class/method filtering.
9
+ *
10
+ * This internal command bypasses discovery by targeting a specific test import
11
+ * and optional class or method names.
12
+ */
8
13
  @CliCommand()
9
14
  @IsPrivate()
10
15
  export class TestDirectCommand {
@@ -4,7 +4,10 @@ import { CliCommand } from '@travetto/cli';
4
4
  import type { TestConsumerType } from './bin/run.ts';
5
5
 
6
6
  /**
7
- * Invoke the test watcher
7
+ * Start the test watcher for continuous test execution.
8
+ *
9
+ * Watches project changes and reruns either all tests or changed subsets,
10
+ * using the configured output format.
8
11
  */
9
12
  @CliCommand()
10
13
  export class TestWatcherCommand {