mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
13 lines
379 B
JavaScript
13 lines
379 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"
|
|
}]],
|
|
};
|