mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
5ea21bf2ba
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
13 lines
311 B
TypeScript
13 lines
311 B
TypeScript
module.exports = {
|
|
clearMocks: false,
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
setupFiles: ['dotenv/config'],
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
moduleNameMapper: {
|
|
'^csv-parse/sync': '<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs'
|
|
},
|
|
verbose: true
|
|
};
|