Dashboard  2
Lot's of data
Loading...
Searching...
No Matches
jest.config.js
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** area-rattrapage
4** File description:
5** jest.config.js
6*/
7
8module.exports = {
9 preset: 'ts-jest',
10 testEnvironment: 'node',
11 moduleDirectories: ['node_modules', './src'],
12 moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx'],
13 transform: {
14 '^.+\\.ts$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], // Explicitly use tsconfig.test.json
15 },
16 testMatch: ['**/__tests__/**/*.ts'],
17};