From 7a2145a0d37a4e85739aec8caf05ac74e92945e5 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Thu, 21 Sep 2023 11:33:19 +0200 Subject: [PATCH] docs: unit tests --- docs/abra/hack.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/abra/hack.md b/docs/abra/hack.md index 88e5a8fd..3a308319 100644 --- a/docs/abra/hack.md +++ b/docs/abra/hack.md @@ -20,6 +20,24 @@ Our [Drone CI configuration](https://git.coopcloud.tech/coop-cloud/abra/src/bran Please use the [conventional commit format](https://www.conventionalcommits.org/en/v1.0.0/) for your commits so we can automate our change log. +## Unit tests + +### Run tests + +Run the entire suite. + +``` +make test +``` + +### Filter tests + +Run a specific test. + +``` +go test ./pkg/recipe -v -run TestGetVersionLabelLocalDoesNotUseTimeoutLabel +``` + ## Integration tests ### Install dependencies