8 lines
206 B
CoffeeScript
8 lines
206 B
CoffeeScript
Flowerbox.Then /^the counter (should|should not) be running$/, (state) ->
|
|
switch state
|
|
when 'should'
|
|
@expect(@timer).toBeRunning()
|
|
when 'should not'
|
|
@expect(@timer).not.toBeRunning()
|
|
|