Exception: Teaspoon::IstanbulNotFoundError
- Defined in:
- lib/teaspoon/exceptions.rb
Instance Method Summary collapse
-
#initialize(msg = nil) ⇒ IstanbulNotFoundError
constructor
A new instance of IstanbulNotFoundError.
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 |