class Opal::CliRunners::Firefox

def initialize(data)

def initialize(data)
  builder = data[:builder].call
  options = data[:options]
  argv    = data[:argv]
  if argv && argv.any?
    warn "warning: ARGV is not supported by the Firefox runner #{argv.inspect}"
  end
  @output  = options.fetch(:output, $stdout)
  @builder = builder
end