We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bafff7 commit 36c7cc5Copy full SHA for 36c7cc5
features/emacs-fireplace.feature
@@ -28,3 +28,11 @@ Feature: Putting Emacs on Fire
28
And I should see "Fireplace Inner Flame Face"
29
And I should see "Fireplace Outter Flame Face"
30
And I should see "Fireplace Smoke Face"
31
+
32
33
+ Scenario: Turn on the fire and then off
34
+ When I call "fireplace"
35
+ And I switch to buffer "*fireplace*"
36
+ And I call "fireplace-toggle-smoke"
37
+ And I wait for 1 second
38
+ # Then I should see "*" # see then
features/step-definitions/emacs-fireplace-steps.el
@@ -10,3 +10,7 @@
10
(Then "^there is a \"\\([^\"]+\\)\" buffer$"
11
(lambda (buffer-name)
12
(get-buffer buffer-name)))
13
14
+(When "^I wait for \\([0-9]+\\) second$"
15
+ (lambda (time)
16
+ (sleep-for (string-to-number time))))
0 commit comments