mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-12 20:57:45 +02:00
Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>
19 lines
433 B
JavaScript
19 lines
433 B
JavaScript
module.exports = {
|
|
projects: [
|
|
{
|
|
displayName: 'node',
|
|
testEnvironment: 'node',
|
|
preset: 'ts-jest',
|
|
testMatch: ['<rootDir>/src/__test__/main/**/*.test.ts']
|
|
},
|
|
{
|
|
displayName: 'jsdom',
|
|
testEnvironment: 'jsdom',
|
|
preset: 'ts-jest',
|
|
testMatch: ['<rootDir>/src/__test__/ui/**/*.test.ts']
|
|
}
|
|
],
|
|
roots: ["./src", "./tests"],
|
|
coverageReporters: ["text-summary", "html"],
|
|
}
|