From 1b7d60a693478b3535eb84591be347e3ddf4c4d0 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 26 Sep 2023 13:38:10 +0300 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8311b04..986bb19 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,14 @@ A suite of test-helpers exists to run `terraform apply` on modules with variable Reference existing `*.test.ts` files for implementation. -```sh +```shell # Run tests for a specific module! $ bun test -t '' ``` + +You can test a module locally by updating the source as follows + +```hcl +source = "git::https://github.com//.git//?ref=" +``` +> **Note:** This is the responsibility of the module author to implement tests for their module. and test the module locally before submitting a PR.