Skip to content
Snippets Groups Projects
Commit 869fe88b authored by Éloïs's avatar Éloïs
Browse files

tests: not fail on skipped

parent 17afaca7
No related branches found
No related tags found
No related merge requests found
......@@ -27,14 +27,22 @@ folder and give it the extension `.feature`.
Read in the sections below which users are available and which operations you can write.
If you want to write things that are not yet interpreted, consider adding the `@allow.skipped` tag above your script:
If you want to write things that are not yet interpreted, make sure you standardize as much as
possible the way you write actions and assertions, in order to facilitate their future technical
interpretation.
Feel free to add comments to explain your scenario:
```gherkin
Feature: My awesome feature
@allow.skipped
Scenario: If something like this happens, then we should observe that
Given Something
"""
This is a comment, you can write whatever you want here, this part of the text will not be
interpreted, but it allows you to explain your scenario so that the developers interpret
it correctly.
"""
When Something's happening
Then We should observe that
```
......
......@@ -168,7 +168,7 @@ async fn main() {
//env_logger::init();
DuniterWorld::cucumber()
.fail_on_skipped()
//.fail_on_skipped()
.max_concurrent_scenarios(4)
.run("features")
.await;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment