Sha256: a13ae015b323a2cd67621d750ea56ad255fb7eae8b0805e270b8e73f1586af70
Contents?: true
Size: 433 Bytes
Versions: 3
Compression:
Stored size: 433 Bytes
Contents
module JsTestDriver module Commands class GenerateCoverageReport < BaseCommand attr_reader :runtime_config def initialize(runtime_config) super('genhtml') option('-o', runtime_config.coverage_files_path) arg(runtime_config.coverage_data_file) end protected def executable_not_found! warn("Could not find executable: #{@command}") end end end end
Version data entries
3 entries across 3 versions & 1 rubygems