X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/a7cf03c192470cbab13edeb1aec99e0c66dede10..852ee620f0a2f6a83cf83eba860ca951b66bb7e2:/jest.config.js diff --git a/jest.config.js b/jest.config.js index 6b808fc..60c5b85 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,24 +1,25 @@ /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ export default { - preset: "ts-jest", - transform: { - "^.+\\.svelte$": [ - "svelte-jester", - { - "preprocess": true - } - ] - }, - moduleNameMapper: { - "^\\$lib(.*)$": "/src/lib$1", - "^\\$app(.*)$": [".svelte/dev/runtime/app/*", ".svelte/build/runtime/app/*"] - }, - moduleFileExtensions: ["ts", "js", "svelte"], - globals: { - 'ts-jest': { - diagnostics: { - ignoreCodes: [ 'TS151001' ], - }, - }, - }, -} + preset: 'ts-jest', + collectCoverage: true, + transform: { + '^.+\\.svelte$': [ + 'svelte-jester', + { + preprocess: true + } + ] + }, + moduleNameMapper: { + '^\\$lib(.*)$': '/src/lib$1', + '^\\$app(.*)$': ['.svelte/dev/runtime/app/*', '.svelte/build/runtime/app/*'] + }, + moduleFileExtensions: ['ts', 'js', 'svelte'], + globals: { + 'ts-jest': { + diagnostics: { + ignoreCodes: ['TS151001'] + } + } + } +};