Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: adding general rules to e2e contribution guidelines #1966

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update CONTRIBUTING.MD
nilgaar authored Nov 22, 2024
commit 8f220c95bb7548061051dda419b3f497e8e0bf60
2 changes: 1 addition & 1 deletion docs/e2e-tests/CONTRIBUTING.MD
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ These principles are valid for new contributions. Some parts of the codebase may
All tests have to follow a set of simple rules:
I. Check the preconditions. If tests are running in parallel, try to create the preconditions you need to avoid race conditions.
II. Each test has to test one and only one thing.
III. All tests have to contain preconditions, actions, and assertions. _Think in [Gherkin](https://cucumber.io/docs/guides/overview/) terms_.
III. All tests have to contain preconditions, actions, and assertions, like you whould do in [Gherkin](https://cucumber.io/docs/guides/overview/); think in those terms.

#### Technical Guidelines