# test > Taskfile で定義された `feature_test` タスクを使ってテストを実行する。 - Author: fyui001 - Repository: fyui001/Chiron - Version: 20260209202746 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-09 - Source: https://github.com/fyui001/Chiron - Web: https://mule.run/skillshub/@@fyui001/Chiron~test:20260209202746 --- # /test - テスト実行 Taskfile で定義された `feature_test` タスクを使ってテストを実行する。 ## 手順 1. 以下のコマンドでテストを実行: ```bash task feature_test ``` 2. テスト結果を確認し、失敗があれば原因を報告する。 ## 特定テストのみ実行する場合 Taskfile にフィルタ付きタスクがないため、直接コマンドを使う: ```bash docker compose exec chiron dotnet test --filter "FullyQualifiedName~<テスト名>" ```