UNPKG
jest-ai
Version:
latest (2.0.3)
2.0.3
2.0.2
2.0.1
2.0.0
1.1.0
1.0.0
0.0.3
0.0.2
0.0.1
0.0.0
Custom jest matchers for testing AI applications
github.com/codeably-io/jest-ai
codeably-io/jest-ai
jest-ai
/
types
/
jest-globals.d.ts
11 lines
(10 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
type
expect }
from
'@jest/globals'
import
{
type
JestAIMatchers
}
from
'./matchers'
export
{}
declare
module
'@jest/expect'
{
export
interface
Matchers
<R
extends
void
|
Promise
<
void
>>
extends
JestAIMatchers
<
ReturnType
<typeof expect.stringContaining>, R > {} }