Exception: Teaspoon::IstanbulNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/teaspoon/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil) ⇒ IstanbulNotFoundError

Returns a new instance of IstanbulNotFoundError.



149
150
151
152
# 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