update test config

This commit is contained in:
silverwind 2023-12-14 13:29:33 +01:00
parent bf1a995576
commit a55d7b4151
Signed by untrusted user: silverwind
GPG Key ID: 2E62B41C93869443
3 changed files with 8 additions and 6 deletions

8
package-lock.json generated

@ -36,7 +36,7 @@
"timerel": "5.4.3",
"versions": "12.0.0",
"vitest": "1.0.1",
"vitest-config-silverwind": "4.0.0"
"vitest-config-silverwind": "5.0.0"
},
"engines": {
"node": ">=18"
@ -4339,9 +4339,9 @@
}
},
"node_modules/vitest-config-silverwind": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/vitest-config-silverwind/-/vitest-config-silverwind-4.0.0.tgz",
"integrity": "sha512-B8qKEUku3TIW6kWDynEo2zo3CEkvw2ycRHPYOYVLz9h6+7Q8jg0xeRp3/aEyqQ4lWeyH5KJE105HfNVVMVNqPA==",
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/vitest-config-silverwind/-/vitest-config-silverwind-5.0.0.tgz",
"integrity": "sha512-WZtNhTZrKxRdBqC+dQsF5Puxhehh4F00Pb9cUtvXJXCVPkEZURBT8bd3hbuGl5jPW1OO42/B4/LZQggzrOVu1g==",
"dev": true
},
"node_modules/web-streams-polyfill": {

@ -38,6 +38,6 @@
"timerel": "5.4.3",
"versions": "12.0.0",
"vitest": "1.0.1",
"vitest-config-silverwind": "4.0.0"
"vitest-config-silverwind": "5.0.0"
}
}

@ -2,5 +2,7 @@ import {defineConfig} from "vitest/config";
import {backendTest} from "vitest-config-silverwind";
export default defineConfig({
test: backendTest,
test: {
...backendTest({url: import.meta.url}),
},
});