diff options
author | 2023-08-09 07:14:30 +0200 | |
---|---|---|
committer | 2023-08-08 22:14:30 -0700 | |
commit | 40d00a961ec4aa4398e18bada520eaf5791151cc (patch) | |
tree | 6d47891914742498df7becf253575d633386919c /src/bun.js/test/jest.classes.ts | |
parent | 1941dbbd71c6d6730ca78b21ef2fd20f51124950 (diff) | |
download | bun-40d00a961ec4aa4398e18bada520eaf5791151cc.tar.gz bun-40d00a961ec4aa4398e18bada520eaf5791151cc.tar.zst bun-40d00a961ec4aa4398e18bada520eaf5791151cc.zip |
feat(bun/test): Implement "toSatisfy" & "toIncludeRepeated" (fwup) (#3651)
* Fix merge issues
* oop
* make codegen
* Fix build issues
---------
Co-authored-by: dave caruso <me@paperdave.net>
Diffstat (limited to 'src/bun.js/test/jest.classes.ts')
-rw-r--r-- | src/bun.js/test/jest.classes.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bun.js/test/jest.classes.ts b/src/bun.js/test/jest.classes.ts index c337ab4ec..d40acbf07 100644 --- a/src/bun.js/test/jest.classes.ts +++ b/src/bun.js/test/jest.classes.ts @@ -353,6 +353,14 @@ export default [ fn: "toInclude", length: 1, }, + toIncludeRepeated: { + fn: "toIncludeRepeated", + length: 2, + }, + toSatisfy: { + fn: "toSatisfy", + length: 1, + }, toStartWith: { fn: "toStartWith", length: 1, |