You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constesModules=['quasar/lang','lodash-es'].join('|');/* eslint-env node */module.exports={globals: {__DEV__: true,// TODO: Remove if resolved natively// See https://github.com/vuejs/vue-jest/issues/175'vue-jest': {pug: {doctype: 'html'},},},// noStackTrace: true,// bail: true,// cache: false,// verbose: true,// watch: true,coverageDirectory: '<rootDir>/reports/coverage',collectCoverageFrom: ['<rootDir>/src/**/*.vue','<rootDir>/src/**/*.js','<rootDir>/src/**/*.ts','<rootDir>/src/**/*.jsx','<rootDir>/src/**/*.tsx',],coveragePathIgnorePatterns: ['/node_modules/','.d.ts$'],coverageThreshold: {global: {// branches: 50,// functions: 50,// lines: 50,// statements: 50},},testMatch: [// Matches tests in any subfolder of 'src' or into 'test/jest/__tests__'// Matches all files with extension 'js', 'jsx', 'ts' and 'tsx''<rootDir>/test/jest/__tests__/**/*.(spec|test).+(ts|js)?(x)','<rootDir>/src/**/*.(spec|test).+(ts|js)?(x)',],// Extension-less imports of components are resolved to .ts files by TS,// grating correct type-checking in test files.// Being 'vue' the first moduleFileExtension option, the very same imports// will be resolved to .vue files by Jest, if both .vue and .ts files are// in the same folder.// This guarantee a great dev experience both for testing and type-checking.// See https://github.com/vuejs/vue-jest/issues/188#issuecomment-620750728moduleFileExtensions: ['vue','js','jsx','json','ts','tsx'],moduleNameMapper: {'^~/(.*)$': '<rootDir>/$1','^src/(.*)$': '<rootDir>/src/$1','^app/(.*)$': '<rootDir>/$1','^components/(.*)$': '<rootDir>/src/components/$1','^layouts/(.*)$': '<rootDir>/src/layouts/$1','^pages/(.*)$': '<rootDir>/src/pages/$1','^assets/(.*)$': '<rootDir>/src/assets/$1','^boot/(.*)$': '<rootDir>/src/boot/$1','.*css$': '@quasar/quasar-app-extension-testing-unit-jest/stub.css',},transform: {// See https://jestjs.io/docs/en/configuration.html#transformignorepatterns-array-string[`^(${esModules}).+\\.js$`]: 'babel-jest','^.+\\.(ts|js|html)$': 'ts-jest',// vue-jest uses find-babel-file, which searches by this order:// (async) .babelrc, .babelrc.js, package.json, babel.config.js// (sync) .babelrc, .babelrc.js, babel.config.js, package.json// https://github.com/tleunen/find-babel-config/issues/33'.*\\.vue$': '@vue/vue3-jest','.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$':
'jest-transform-stub',},transformIgnorePatterns: [`node_modules/(?!(${esModules}))`],snapshotSerializers: ['<rootDir>/node_modules/jest-serializer-vue'],testResultsProcessor: 'jest-sonar-reporter',};
4383e68a453220e6cf22859b32b65def5e8ceed6
The text was updated successfully, but these errors were encountered:
Remove if resolved natively
See vuejs/vue-jest#175
bail: true,
cache: false,
verbose: true,
watch: true,
functions: 50,
lines: 50,
statements: 50
Matches all files with extension 'js', 'jsx', 'ts' and 'tsx'
grating correct type-checking in test files.
Being 'vue' the first moduleFileExtension option, the very same imports
will be resolved to .vue files by Jest, if both .vue and .ts files are
in the same folder.
This guarantee a great dev experience both for testing and type-checking.
See vuejs/vue-jest#188 (comment)
(async) .babelrc, .babelrc.js, package.json, babel.config.js
(sync) .babelrc, .babelrc.js, babel.config.js, package.json
tleunen/find-babel-config#33
https://github.com/polygon-software/full-stack-bootstrap/blob/847d29e9466a80e79546d4233810d2ef4afaa6be/frontend/jest.config.js#L7
4383e68a453220e6cf22859b32b65def5e8ceed6
The text was updated successfully, but these errors were encountered: