Skip to content

Commit

Permalink
editorial
Browse files Browse the repository at this point in the history
  • Loading branch information
sathya0 committed Nov 29, 2023
1 parent 7b093eb commit 8a42181
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ To run a specific test, add an `munitTest` property for each specific test to th

== Run Tests with Specific Tags

To run tests with specific tags, add an `munitTags` property for the test with the specific tag to the configuration section of the MUnit Extensions Maven plugin. Separate the tags with commas:
To run tests with specific tags, add an `munitTags` property for the tests with the specific tags to the configuration section of the MUnit Extensions Maven plugin. Separate the tags with commas, for example:

[source,xml,linenums]
----
Expand All @@ -228,7 +228,7 @@ To run tests with specific tags, add an `munitTags` property for the test with t
<artifactId>munit-extensions-maven-plugin</artifactId>
<configuration>
...
<munitTags>exampleMunitTag,exampleMunitTag2</munitTags>
<munitTags>exampleMUnitTag,exampleMUnitTag2</munitTags>
...
</configuration>
</plugin>
Expand Down Expand Up @@ -256,7 +256,7 @@ To skip MUnit tests, add a `skipMunitTests` property to skip MUnit tests to the

== Skip Tests After One Suite Fails

To skip the rest of the tests if one test suite fails, add a `skipAfterFailure` property to skip after failure to the configuration section of the MUnit Extensions Maven plugin:
To skip the rest of the tests if one test suite fails, add a `skipAfterFailure` property to the configuration section of the MUnit Extensions Maven plugin:

[source,xml,linenums]
----
Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/munit-extensions-maven-plugin.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You can instruct the MUnit Extensions Maven plugin to run tests that belong only
mvn clean verify -Dmunit.test=<regex-test-suite>
----

The `munit.test` property accepts regular, Java expressions applied to the name of the MUnit test suite file. The path is relative to `src/test/munit`.
The `munit.test` property accepts regular Java expressions applied to the name of the MUnit test suite file. The path is relative to `src/test/munit`.

For example:

Expand Down

0 comments on commit 8a42181

Please sign in to comment.