@@ -11,7 +11,7 @@ Feature: Toggle deferred
1111 """
1212 And I go to the front of the word "assert"
1313 And I press "C-c C-b td"
14- Then I should not see "//contains"
14+ Then I should not see "// contains"
1515
1616 Scenario : Deferring a test
1717 When I insert:
@@ -25,22 +25,22 @@ Feature: Toggle deferred
2525 And I turn on buster-mode
2626 And I go to the front of the word "assert"
2727 And I press "C-c C-b td"
28- Then I should see "//contains"
28+ Then I should see "// contains"
2929 And the cursor should be before "assert"
3030
3131 Scenario : Undeferring a test
3232 When I insert:
3333 """
3434 buster.testCase('Building Page', {
35- "//contains title after loading page": function () {
35+ "// contains title after loading page": function () {
3636 assert.match(document.body.innerHTML, "Zombie TDD");
3737 }
3838 });
3939 """
4040 And I turn on buster-mode
4141 And I go to the front of the word "assert"
4242 And I press "C-c C-b td"
43- Then I should not see "//contains"
43+ Then I should not see "// contains"
4444
4545 Scenario : Deferring a single quoted test
4646 When I insert:
@@ -54,4 +54,4 @@ Feature: Toggle deferred
5454 And I turn on buster-mode
5555 And I go to the front of the word "assert"
5656 And I press "C-c C-b td"
57- Then I should see "'//contains"
57+ Then I should see "'// contains"
0 commit comments