From 1e3ac8be4c5f0248c227fb5c45034a0ce8187448 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 26 Sep 2023 14:10:42 +0300 Subject: [PATCH] Update CONTRIBUTING.md (#49) * Update CONTRIBUTING.md * fmt --- CONTRIBUTING.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8311b04..4c3efdc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,15 @@ 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.