You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
383 B
Markdown
19 lines
383 B
Markdown
# Contributing
|
|
|
|
To create a new module, clone this repository and run:
|
|
|
|
```shell
|
|
./new.sh MOUDLE_NAME
|
|
```
|
|
|
|
## Testing a Module
|
|
|
|
A suite of test-helpers exists to run `terraform apply` on modules with variables, and test script output against containers.
|
|
|
|
Reference existing `*.test.ts` files for implementation.
|
|
|
|
```sh
|
|
# Run tests for a specific module!
|
|
$ bun test -t '<module>'
|
|
```
|