UNPKG
mina-zkml
Version:
latest (1.0.1)
1.0.1
1.0.0
Zero-knowledge machine learning for Mina Protocol
mina-zkml
/
jest.config.ts
14 lines
(11 loc)
•
285 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
type
{
Config
}
from
'@jest/types'
;
const
config
:
Config
.
InitialOptions
= {
preset
:
'ts-jest'
,
testEnvironment
:
'node'
,
moduleFileExtensions
: [
'ts'
,
'js'
],
transform
: {
'^.+\\.ts$'
:
'ts-jest'
, },
testMatch
: [
'**/tests/**/*.test.ts'
], };
export
default
config;