mirror of
https://code.forgejo.org/forgejo/upload-artifact.git
synced 2024-11-08 18:32:40 +00:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
|
module.exports = {
|
||
|
clearMocks: true,
|
||
|
moduleFileExtensions: ['js', 'ts'],
|
||
|
roots: ['<rootDir>'],
|
||
|
testEnvironment: 'node',
|
||
|
testMatch: ['**/*.test.ts'],
|
||
|
testRunner: 'jest-circus/runner',
|
||
|
transform: {
|
||
|
'^.+\\.ts$': 'ts-jest'
|
||
|
},
|
||
|
verbose: true
|
||
|
}
|