Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/guides/testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ The prefixes (`get`, `query`, and `find`) and the middle portion (`By` and `AllB
- **getAllBy**: synchronous, throws if not found, returns array of matches
- **queryBy**: synchronous, null if not found, error if more than 1 matches
- **queryAllBy**: synchronous, returns array of zero or more matches
- **findBy**: asynchronous, rejected if not found within 1000ms or more than 1 matches, resolves wth element if found
- **findBy**: asynchronous, rejected if not found within 1000ms or more than 1 matches, resolves with element if found
- **findAllBy**: asynchronous, rejected if not found within 1000ms, resolves with array of one or more element(s)

By default, queries should start with `get...`.
Expand Down