This commit is contained in:
2024-08-13 16:46:44 -04:00
commit 8cb37c6011
418 changed files with 69567 additions and 0 deletions

17
frontend/jest.config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
preset: '@vue/cli-plugin-unit-jest/presets/no-babel',
testEnvironment: 'node',
"jest": {
"moduleFileExtensions": [
"js",
"json",
// tell Jest to handle `*.vue` files
"vue"
],
"transform": {
// process `*.vue` files with `vue-jest`
".*\\.(vue)$": "vue-jest"
}
}
};