mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-05 19:55:40 +01:00
13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
|
module.exports = {
|
||
|
clearMocks: true,
|
||
|
moduleFileExtensions: ['js', 'ts'],
|
||
|
setupFiles: ["dotenv/config"],
|
||
|
testEnvironment: 'node',
|
||
|
testMatch: ['**/*.test.ts'],
|
||
|
testRunner: 'jest-circus/runner',
|
||
|
transform: {
|
||
|
'^.+\\.ts$': 'ts-jest'
|
||
|
},
|
||
|
verbose: false
|
||
|
}
|