class Teaspoon::IstanbulNotFoundError

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method
# File lib/teaspoon/exceptions.rb, line 149
def initialize(msg = nil)
  msg ||= "You requested coverage reports, but Teaspoon cannot find the istanbul binary. Run: npm install -g istanbul"
  super(msg)
end