mirror of
https://github.com/directus/directus.git
synced 2026-02-05 18:25:02 -05:00
* Bump prettier from 1.19.1 to 2.0.2 Bumps [prettier](https://github.com/prettier/prettier) from 1.19.1 to 2.0.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/1.19.1...2.0.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Add dangling comma's * Update eslint config to match prettier default * Make eslint match prettier for real this time Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
19 lines
404 B
JavaScript
19 lines
404 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',
|
|
},
|
|
],
|
|
],
|
|
};
|