Skip to content

Commit 3886d7c

Browse files
committed
spaces restored on readme
1 parent ebc71a5 commit 3886d7c

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

readme.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Please refer to the integration tests for example usage:
7575
<featuresDirectory>src/test/resources/features/</featuresDirectory>
7676
<!-- Directory where the cucumber report files shall be written -->
7777
<cucumberOutputDir>target/cucumber-parallel</cucumberOutputDir>
78-
<!-- List of cucumber plugins. When none are provided the json formatter is used. For more
78+
<!-- List of cucumber plugins. When none are provided the json formatter is used. For more
7979
advanced usage see section about configuring cucumber plugins -->
8080
<plugins>
8181
<plugin>
@@ -97,7 +97,7 @@ Please refer to the integration tests for example usage:
9797
<tag>@important</tag>
9898
<tag>@important,@billing</tag>
9999
</tags>
100-
<!-- Generate TestNG runners instead of JUnit ones. -->
100+
<!-- Generate TestNG runners instead of JUnit ones. -->
101101
<useTestNG>false</useTestNG>
102102
<!-- The naming scheme to use for the generated test classes. One of ['simple', 'feature-title', 'pattern'] -->
103103
<namingScheme>simple</namingScheme>
@@ -119,9 +119,9 @@ If `cucumber.options` VM argument is specified as per the [Cucumber CLI options]
119119

120120
Where glue is a comma separated list of package names to use for the Cucumber Glue.
121121

122-
The plugin will search `featuresDirectory` for `*.feature` files and generate a JUnit test for each one.
122+
The plugin will search `featuresDirectory` for `*.feature` files and generate a JUnit test for each one.
123123
> **WARNING:** `featuresDirectory` must denote a directory within the root of the classpath.
124-
> **Example:**
124+
> **Example:**
125125
> * Resources in `src/test/resources` are added to the classpath by default.
126126
> * `src/test/resources/features` **is** in the root of the classpath, so **would be valid** for `featuresDirectory`
127127
> * `src/test/resources/features/sub_folder` is **not** in the root of the classpath, so **would not be valid** to put in `featuresDirectory`
@@ -134,8 +134,8 @@ Each runner is configured to output the results to a separate output file under
134134

135135
### Cucumber Plugins ###
136136

137-
Cucumber plugins that write to a file are referenced using the syntax
138-
`name[:outputDirectory/excutorId[.extension]]`. Because not all plugins create output and the
137+
Cucumber plugins that write to a file are referenced using the syntax
138+
`name[:outputDirectory/excutorId[.extension]]`. Because not all plugins create output and the
139139
excutorId is provided at runtime some leg work is needed.
140140

141141
#### Build-in Cucumber Plugins ####
@@ -147,7 +147,7 @@ excutorId is provided at runtime some leg work is needed.
147147
<name>json</name>
148148
<!--Optional file extension. For build in cucumber plugins a sensible default is provided. -->
149149
<extension>json</extension>
150-
<!--Optional output directory. Overrides cucumberOutputDirectory. Usefull when different
150+
<!--Optional output directory. Overrides cucumberOutputDirectory. Usefull when different
151151
plugins create files with the same extension-->
152152
<outputDirectory>${project.build.directory}/cucumber-parallel/json</outputDirectory>
153153
</plugin>
@@ -160,10 +160,10 @@ excutorId is provided at runtime some leg work is needed.
160160
<plugins>
161161
<plugin>
162162
<name>path.to.my.formaters.CustomHtmlFormatter</name>
163-
<!--Optional file extension. Unless the formatter writes to a file it is strongly
163+
<!--Optional file extension. Unless the formatter writes to a file it is strongly
164164
recommend that one is provided. -->
165165
<extension>html</extension>
166-
<!--Optional output directory. Overrides cucumberOutputDirectory. Useful when different
166+
<!--Optional output directory. Overrides cucumberOutputDirectory. Useful when different
167167
plugins create files with the same extension-->
168168
<outputDirectory>${project.build.directory}/cucumber-parallel/html</outputDirectory>
169169
</plugin>
@@ -176,7 +176,7 @@ excutorId is provided at runtime some leg work is needed.
176176
<plugins>
177177
<plugin>
178178
<name>path.to.my.formaters.NoOutputFormatter</name>
179-
<!--Set to true if this plug creates no output. Setting extension or outputDirectory
179+
<!--Set to true if this plug creates no output. Setting extension or outputDirectory
180180
will override this setting -->
181181
<noOutput>true</noOutput>
182182
</plugin>
@@ -219,44 +219,44 @@ The `namingPattern` property is for the **class name** only. Do not add the `.j
219219
### Custom Templates ###
220220

221221
Some reporting plugins, such as
222-
[Cucumber Extent Reporter](https://github.com/email2vimalraj/CucumberExtentReporter), require some
223-
setup before a test is started. A template can be used to customize the integration tests. For a
224-
sample see the [extents-report](src/it/junit/extents-report) integration test. For a full list of
222+
[Cucumber Extent Reporter](https://github.com/email2vimalraj/CucumberExtentReporter), require some
223+
setup before a test is started. A template can be used to customize the integration tests. For a
224+
sample see the [extents-report](src/it/junit/extents-report) integration test. For a full list of
225225
available variables please see CucumberITGeneratorBy(Feature|Scenario).
226226

227227
FAQ
228228
===
229229
Q. Why are my tests not executed?
230230

231-
A. By default this plugin generates integration tests. Ensure that the
232-
[Maven Failsafe Plugin](https://maven.apache.org/surefire/maven-failsafe-plugin/) is properly
231+
A. By default this plugin generates integration tests. Ensure that the
232+
[Maven Failsafe Plugin](https://maven.apache.org/surefire/maven-failsafe-plugin/) is properly
233233
configured.
234-
234+
235235
Q. Why am I not seeing any generated runners?
236236

237-
A. Scenarios that don't match any tags are excluded. If there is no scenario to run, no runner will
237+
A. Scenarios that don't match any tags are excluded. If there is no scenario to run, no runner will
238238
be generated.
239-
239+
240240
Q. Is there a mailing list?
241241

242242
A. No. but we have a Gitter channel: https://gitter.im/cucumber-jvm-parallel-plugin/
243243

244244

245245
Migration from version 3.x
246246
==========================
247-
* The `filterFeaturesByTags` property has been removed. If you have not set this property to true
247+
* The `filterFeaturesByTags` property has been removed. If you have not set this property to true
248248
remove any tags from your configuration. If you have set it to true you can safely remove it.
249249

250250

251251
Migration from version 2.x
252252
==========================
253-
* The `glue` property now takes a list of `package` elements rather then a list of comma delimited packages. A
253+
* The `glue` property now takes a list of `package` elements rather then a list of comma delimited packages. A
254254
`package` contains a single package name to be used as glue.
255-
* The `tags` property now takes a list of `tag` elements rather then a list of comma and quote delimited strings. A
255+
* The `tags` property now takes a list of `tag` elements rather then a list of comma and quote delimited strings. A
256256
`tag` element can take one or more tags. The semantics are the same as those of the
257257
[the command line]( https://github.com/cucumber/cucumber/wiki/Tags#running-a-subset-of-scenarios).
258-
* The default value for `cucumberOutputDir` has changed from `target/cucumber-parallel` to
259-
`${project.build.directory}/cucumber-parallel` if you were using a build directory other then `target` you can remove
258+
* The default value for `cucumberOutputDir` has changed from `target/cucumber-parallel` to
259+
`${project.build.directory}/cucumber-parallel` if you were using a build directory other then `target` you can remove
260260
this element.
261261

262262

@@ -292,7 +292,7 @@ Changelog
292292

293293
2.2.0
294294
-----
295-
* PR #87 - allow setting of packageName for runners. Closes #45
295+
* PR #87 - allow setting of packageName for runners. Closes #45
296296
* PR #85 - Resolve inconsistent filters: Fix issue Issue #76
297297
* PR #86 - use the baseDir of the current project for velocity
298298

0 commit comments

Comments
 (0)