Skip to content

Commit b5990e0

Browse files
committed
feat: implement real-world CI pipeline and SecOps with CodeQL
1 parent 470052d commit b5990e0

5 files changed

Lines changed: 5437 additions & 567 deletions

File tree

email-api/jest.config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import 'dotenv/config'; // Esto cargará el archivo .env de la raíz
2+
3+
export default {
4+
testEnvironment: 'node',
5+
transform: {
6+
'^.+\\.(t|j)sx?$': '@swc/jest',
7+
},
8+
moduleNameMapper: {
9+
'^(\\.{1,2}/.*)\\.js$': '$1',
10+
},
11+
// Aseguramos que cargue el setup si fuera necesario
12+
};

0 commit comments

Comments
 (0)