-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.ts
34 lines (31 loc) · 990 Bytes
/
jest.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
import type { Config } from 'jest'
const config: Config = {
roots: ['./src/main', './src/renderer'],
projects: [
{
displayName: 'node',
testEnvironment: 'node',
testMatch: ['<rootDir>/src/main/src/__test__/**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest' // Indica que se usará ts-jest para transformar los archivos TypeScript
}
},
{
displayName: 'renderer',
testEnvironment: 'jsdom',
testMatch: ['<rootDir>/src/renderer/src/__test__/**/*.test.ts'], // Indica los archivos de prueba que se ejecutarán en el navegador
transform: {
'^.+\\.ts$': 'ts-jest' // Indica que se usará ts-jest para transformar los archivos TypeScript
}
}
],
clearMocks: true,
collectCoverage: true,
coverageDirectory: 'coverage',
coverageProvider: 'v8'
}
export default config