You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add resource management rules to testing conventions
- Add clear guidelines for test resource cleanup and isolation
- Include rules about tests cleaning up after themselves
- Add warning against interfering with production data directories
- Provide practical examples showing good vs bad practices
- Document use of temporary directories for test isolation
// Creates ./data/test and ./build/test directories
103
+
}
104
+
```
105
+
61
106
## 🚀 Getting Started
62
107
63
108
When writing new tests, always use the `it_should_` prefix and describe the specific behavior being validated. This makes the test suite more readable and maintainable for all contributors.
0 commit comments