aboutsummaryrefslogtreecommitdiff
path: root/docs/cli
diff options
context:
space:
mode:
authorGravatar Nicholas <nskins@umich.edu> 2023-03-11 11:33:46 -0500
committerGravatar GitHub <noreply@github.com> 2023-03-11 08:33:46 -0800
commit8c91278a00edf6774148c7b41871d1f999cdb0e1 (patch)
tree9ee81920b473cd492b28094bdf3c8bd33b47a9cb /docs/cli
parentd61e90d558d3e1faef1b6f75e26df4b2cc111ff7 (diff)
downloadbun-8c91278a00edf6774148c7b41871d1f999cdb0e1.tar.gz
bun-8c91278a00edf6774148c7b41871d1f999cdb0e1.tar.zst
bun-8c91278a00edf6774148c7b41871d1f999cdb0e1.zip
Update comparison matchers compatibility in docs (#2366)
Diffstat (limited to 'docs/cli')
-rw-r--r--docs/cli/test.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/cli/test.md b/docs/cli/test.md
index 9eef73c6d..745e8aef1 100644
--- a/docs/cli/test.md
+++ b/docs/cli/test.md
@@ -196,10 +196,10 @@ Bun implements the following matchers. Full Jest compatibility is on the roadmap
- [ ] [`.toHaveLastReturnedWith()`](https://jestjs.io/docs/expect#tohavelastreturnedwithvalue)
- [ ] [`.toHaveNthReturnedWith()`](https://jestjs.io/docs/expect#tohaventhreturnedwithnthcall-value)
- [ ] [`.toBeCloseTo()`](https://jestjs.io/docs/expect#tobeclosetonumber-numdigits)
-- [ ] [`.toBeGreaterThan()`](https://jestjs.io/docs/expect#tobegreaterthannumber--bigint)
-- [ ] [`.toBeGreaterThanOrEqual()`](https://jestjs.io/docs/expect#tobegreaterthanorequalnumber--bigint)
-- [ ] [`.toBeLessThan()`](https://jestjs.io/docs/expect#tobelessthannumber--bigint)
-- [ ] [`.toBeLessThanOrEqual()`](https://jestjs.io/docs/expect#tobelessthanorequalnumber--bigint)
+- [x] [`.toBeGreaterThan()`](https://jestjs.io/docs/expect#tobegreaterthannumber--bigint)
+- [x] [`.toBeGreaterThanOrEqual()`](https://jestjs.io/docs/expect#tobegreaterthanorequalnumber--bigint)
+- [x] [`.toBeLessThan()`](https://jestjs.io/docs/expect#tobelessthannumber--bigint)
+- [x] [`.toBeLessThanOrEqual()`](https://jestjs.io/docs/expect#tobelessthanorequalnumber--bigint)
- [ ] [`.toBeInstanceOf()`](https://jestjs.io/docs/expect#tobeinstanceofclass)
- [ ] [`.toContainEqual()`](https://jestjs.io/docs/expect#tocontainequalitem)
- [ ] [`.toMatch()`](https://jestjs.io/docs/expect#tomatchregexp--string)