14 lines
322 B
Gherkin
14 lines
322 B
Gherkin
|
Feature: Presentation Timer
|
||
|
Background:
|
||
|
Given I have a presentation counter
|
||
|
|
||
|
Scenario: Render
|
||
|
When I render the counter
|
||
|
Then the counter should show the time "00:00"
|
||
|
And the counter should not be running
|
||
|
|
||
|
Scenario: Start the timer
|
||
|
When I start the timer
|
||
|
Then the counter should be running
|
||
|
|