mirror of
https://github.com/iconify/collections-json.git
synced 2024-11-08 14:21:00 +00:00
13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
|
import config from './jest/jest.shared.config'
|
||
|
|
||
|
config.testMatch = [
|
||
|
'**/?(*.)+(esm).+(spec|test).+(ts|tsx|js)',
|
||
|
]
|
||
|
config.globals = {
|
||
|
'ts-jest': {
|
||
|
useESM: true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export default config
|