Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Commits
912f5b55
Commit
912f5b55
authored
3 years ago
by
Éloïs
Browse files
Options
Downloads
Patches
Plain Diff
tests: change execution config and update doc
parent
1b737550
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
integration-tests/README.md
+11
-1
11 additions, 1 deletion
integration-tests/README.md
integration-tests/tests/cucumber_tests.rs
+4
-1
4 additions, 1 deletion
integration-tests/tests/cucumber_tests.rs
with
15 additions
and
2 deletions
integration-tests/README.md
+
11
−
1
View file @
912f5b55
...
...
@@ -27,7 +27,17 @@ folder and give it the extension `.feature`.
Read in the sections below which users are available and which operations you can write.
[Cucumber Rust Book]
If you want to write things that are not yet interpreted, consider adding the
`@allow.skipped`
tag above your script:
```
gherkin
Feature
:
My awesome feature
@allow.skipped
Scenario
:
If something like this happens, then we should observe that
Given
Something
When
Something's happening
Then
We should observe that
```
### Test users
...
...
This diff is collapsed.
Click to expand it.
integration-tests/tests/cucumber_tests.rs
+
4
−
1
View file @
912f5b55
...
...
@@ -148,5 +148,8 @@ async fn current_ud_amount_should_be(
async
fn
main
()
{
//env_logger::init();
DuniterWorld
::
run
(
"features"
)
.await
DuniterWorld
::
cucumber
()
.fail_on_skipped
()
.max_concurrent_scenarios
(
4
)
.run
(
"features"
)
.await
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment