Replaced jsdom with happy-dom

This commit is contained in:
Liviu Burcusel 2025-10-19 15:05:29 +02:00
parent 278528b5de
commit 1dece38124
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
6 changed files with 146 additions and 33 deletions

View file

@ -1,11 +1,10 @@
{
"extends": "./tsconfig.app.json",
"include": ["tests/**/*.spec.ts", "env.d.ts"],
"include": ["tests/**/*.spec.ts", "env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": [],
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo",
"lib": [],
"types": ["node", "jsdom"]
}
"types": ["node", "happy-dom"],
},
}