[__DIR__.'/../../fixtures'], ]); } public function test_it_lists_schemas(): void { $this->artisan(ListCommand::class) ->assertSuccessful(); } public function test_it_filters_schemas_by_pattern(): void { $this->artisan(ListCommand::class, [ '--filter' => 'app.bsky.*', ]) ->assertSuccessful(); } public function test_it_filters_schemas_by_type(): void { $this->artisan(ListCommand::class, [ '--type' => 'record', ]) ->assertSuccessful(); } }