2023-01-17 18:53:57 +08:00
|
|
|
process.env = Object.assign({}, process.env, {
|
2023-01-23 17:07:14 +08:00
|
|
|
GITHUB_REPOSITORY: 'docker/test-docker-action',
|
2023-01-25 10:20:18 +08:00
|
|
|
GITHUB_RUN_ID: '123',
|
2023-01-17 18:53:57 +08:00
|
|
|
RUNNER_TEMP: '/tmp/github_runner',
|
|
|
|
RUNNER_TOOL_CACHE: '/tmp/github_tool_cache'
|
|
|
|
}) as {
|
|
|
|
[key: string]: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
clearMocks: true,
|
|
|
|
testEnvironment: 'node',
|
|
|
|
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
|
|
|
|
};
|