mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 16:55:48 -05: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
|
||
|
}
|