Skip to content

Commit 2358ded

Browse files
docs: add testing sandbox section to README
- Add Development & Testing section with sandbox commands - Include quick reference for sandbox operations - Link to detailed testing documentation
1 parent 787aa48 commit 2358ded

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,25 @@ A solution for building standardized git commits!
1515
`labcommitr init`, `-i`: Create a file called `.labcommitrc` in the root directory of the current git repo.
1616

1717
`labcommitr go <type> [...message]`: Quickly submit a commit of the specified type with a message. If a message is not specified, a generic one will be generated for you (it is not good practice, however its BLAZINGLY FAST).
18+
19+
## Development & Testing
20+
21+
### Testing Sandbox
22+
23+
For safe testing of Labcommitr commands without affecting your real repository, use the testing sandbox:
24+
25+
```bash
26+
# Create sandbox with config (if available)
27+
pnpm run test:sandbox
28+
29+
# Create sandbox without config (start from scratch)
30+
pnpm run test:sandbox:bare
31+
32+
# Quick reset for iterative testing
33+
pnpm run test:sandbox:reset
34+
35+
# Clean up
36+
pnpm run test:sandbox:clean
37+
```
38+
39+
See [`scripts/README.md`](scripts/README.md) for complete testing documentation.

0 commit comments

Comments
 (0)