diff --git a/integration-tests/README.md b/integration-tests/README.md index 81f37678f158189f7088462b19362a218c08180c..07d7d54931cf553839b923b995d9f9c4b48492d1 100644 --- a/integration-tests/README.md +++ b/integration-tests/README.md @@ -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 ``` diff --git a/integration-tests/tests/cucumber_tests.rs b/integration-tests/tests/cucumber_tests.rs index daf6cd8a9b606060615e7ed27a4ac281f1c78567..3fe4600d54e3ea11068c2b276e5b068ea465950b 100644 --- a/integration-tests/tests/cucumber_tests.rs +++ b/integration-tests/tests/cucumber_tests.rs @@ -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;