mirror of
https://github.com/directus/directus.git
synced 2026-01-28 05:18:13 -05:00
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
module.exports = {
|
|
preset: '@vue/cli-plugin-unit-jest/presets/typescript-and-babel',
|
|
testMatch: ['**/?(*.)+(spec|test).[jt]s?(x)'],
|
|
coveragePathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/.jest/'],
|
|
restoreMocks: true,
|
|
clearMocks: true,
|
|
resetMocks: true,
|
|
reporters: [
|
|
'default',
|
|
[
|
|
'jest-sonar',
|
|
{
|
|
outputDirectory: 'coverage',
|
|
outputName: 'sonar.xml'
|
|
}
|
|
]
|
|
]
|
|
};
|