Skip to content

Commit a61293e

Browse files
authoredOct 15, 2024··
fix(expect): correct behavior of toThrowError with empty string parameter (#6710)
1 parent 988e488 commit a61293e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎packages/expect/src/jest-expect.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,8 @@ export const JestChaiExpect: ChaiPlugin = (chai, utils) => {
643643
|| typeof expected === 'undefined'
644644
|| expected instanceof RegExp
645645
) {
646-
return this.throws(expected)
646+
// Fixes the issue related to `chai` <https://github.com/vitest-dev/vitest/issues/6618>
647+
return this.throws(expected === '' ? /^$/ : expected)
647648
}
648649

649650
const obj = this._obj

‎test/core/test/jest-expect.test.ts

+7
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,13 @@ describe('jest-expect', () => {
106106
// eslint-disable-next-line no-throw-literal
107107
throw ''
108108
}).toThrow(/^$/)
109+
expect(() => {
110+
// eslint-disable-next-line no-throw-literal
111+
throw ''
112+
}).toThrow('')
113+
expect(() => {
114+
throw new Error('error')
115+
}).not.toThrowError('')
109116
expect([1, 2, 3]).toHaveLength(3)
110117
expect('abc').toHaveLength(3)
111118
expect('').not.toHaveLength(5)

0 commit comments

Comments
 (0)
Please sign in to comment.