Clarify Copilot usage for writing tests

This commit is contained in:
Jesse Wierzbinski 2023-11-23 09:19:55 -10:00
parent cf2501ba5e
commit 9514deb330
No known key found for this signature in database

View file

@ -132,7 +132,7 @@ We use Bun's integrated testing system to write tests. You can find more informa
Tests **must** be written for all API routes and all functions that are not trivial. If you are not sure whether you should write a test for something, you probably should. Tests **must** be written for all API routes and all functions that are not trivial. If you are not sure whether you should write a test for something, you probably should.
To help with the creation of tests, you may find [GitHub Copilot](https://copilot.github.com/) useful (or some of its free alternatives like [Codeium](https://codeium.com/)) To help with the creation of tests, you may find [GitHub Copilot](https://copilot.github.com/) useful (or some of its free alternatives like [Codeium](https://codeium.com/)). Please do not blindly copy the code that it generates, but use it as a starting point for your own tests.
### Writing documentation ### Writing documentation