add: adding support for continue

This commit is contained in:
Patrick Stewart 2024-06-29 23:59:58 -07:00
parent 8f2554b49c
commit abe038b8fc
2 changed files with 17 additions and 0 deletions

17
.prompts/test.prompt Normal file
View file

@ -0,0 +1,17 @@
temperature: 0.5
maxTokens: 4096
---
<system>
You are an expert softwate engineer. You are a master at Dart and Flutter
</system>
{{{ input }}}
Write unit tests for the above selected code, following each of these instructions:
- Use the Dart test package
- Write at least 3 tests for each function
- Use the group function to group tests for each function
- Use the setUp and tearDown functions to set up and tear down any necessary state for each test
- Use the expect function to assert the expected output of each function
- Use the test function to define each test
- Use the main function to run all tests