You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.MD
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ By default tests are run using Google Chrome, to run tests using another browser
63
63
64
64
### Feature files
65
65
66
-
A feature file is a [Business Readable, Domain Specific Language](http://martinfowler.com/bliki/BusinessReadableDSL.html) file that lets you describe software’s behaviour without detailing how that behaviour is implemented. Feature files are written using the [Gherkin syntax](https://github.com/cucumber/cucumber/wiki/Gherkin) and must live in a folder named **features** within the root of your project.
66
+
A feature file is a [Business Readable, Domain Specific Language](http://martinfowler.com/bliki/BusinessReadableDSL.html) file that lets you describe software’s behavior without detailing how that behavior is implemented. Feature files are written using the [Gherkin syntax](https://github.com/cucumber/cucumber/wiki/Gherkin) and must live in a folder named **features** within the root of your project.
67
67
68
68
```gherkin
69
69
# ./features/google-search.feature
@@ -93,7 +93,7 @@ module.exports = function () {
93
93
94
94
this.Then(/^I should see some results$/, function () {
@@ -276,7 +276,7 @@ module.exports = function () {
276
276
277
277
You can use the framework without any command line arguments if your application uses the following folder structure:
278
278
279
-
```
279
+
```bash
280
280
.
281
281
├── features
282
282
│ └── google-search.feature
@@ -314,7 +314,7 @@ Everyone is very welcome to contribute to this project. You can contribute just
314
314
315
315
IntelliJ based IDE's have a plugin that allows the tester to control click on a `Given`, `When`, `Then` statement within a Cucumber feature file and have the user taken to the associated step definition. This plugin relies on your project having the following folder structure:
0 commit comments