Teaspoon は、次の場所で Mocha を使用したテストを表示しています: localhost:3000/teaspoon/default
コード カバレッジ レポートに、Istanbul と Teaspoon を使用できることを読みました。
npm istanbul でインストールしましたが、teaspoon で実行する方法がわかりません。
localhost:3000/coverage または localhost:3000/teaspoon/default/coverage でカバレッジに到達したい
構成は何ですか?Teaspoon でデフォルトのものを試しましたが、動作しません:
Teaspoon.setup do |config|
# Coverage (requires istanbul -- https://github.com/gotwarlost/istanbul)
config.coverage = true
config.coverage_reports = ['text', 'html', 'cobertura']
config.coverage_output_dir = "coverage"
config.statements_coverage_threshold = 50
config.functions_coverage_threshold = 50
config.branches_coverage_threshold = 50
config.lines_coverage_threshold = 50
end