aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-06-14 18:57:10 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-06-14 18:57:10 +0200
commitff5f4d1a40f6fa055164b1d3d9f8eb58da781acc (patch)
treea265662b806b8526f00a051dec738aa535c94520
parent1169ecab8debd86dd2ae4f14f7424864464ac7fc (diff)
downloadNorthstarWiki-ff5f4d1a40f6fa055164b1d3d9f8eb58da781acc.tar.gz
NorthstarWiki-ff5f4d1a40f6fa055164b1d3d9f8eb58da781acc.zip
Fill out testing page
-rw-r--r--docs/modding-and-development/testing.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/docs/modding-and-development/testing.md b/docs/modding-and-development/testing.md
index c336420..6c237dd 100644
--- a/docs/modding-and-development/testing.md
+++ b/docs/modding-and-development/testing.md
@@ -10,4 +10,22 @@ description: >-
This section is very much still WIP. Feel free to help expand it.
{% endhint %}
-TODO
+## Developers & Contributors
+
+This section applies to you if you're opening a pull request to any of the Northstar repos.
+
+Whatever your change includes, whether a bug fix or a new feature make sure to test it appropriately.
+
+This means if your change is a bug fix, it's recommend you first make sure you can reproduce the bug. Then after making the necessary changes to fix it, test it using the same method you used to originally confirm the bug. \
+When you're opening a pull request, make sure to mention how to reproduce the bug, so that reviewers can confirm that your chance indeed fixed the issue.
+
+If your change is a new feature, make sure to test both that the newly added functionality performs as expected, as well as ensuring that it doesn't introduce any form of regression bugs. This means, testing anything that might be affected by your new feature.
+
+
+## Maintainers
+
+This section applies to you if you're someone who's able to merge PRs in any of the repos of the Northstar GitHub org as well as when simplying performing reviews, even without being able to actually merge a PR.
+
+When reviewing pull requests on GitHub, make sure to checkout the changes made by a PR locally and test it there. In particular, test the parts of the code that are touched by a PR.
+
+After testing, make sure to mention the steps tested in your review.