test: bump vitest v1.1.3 (#12546)

This commit is contained in:
inottn 2024-01-05 22:55:17 +08:00 committed by GitHub
parent c07c8c6206
commit b5645ee192
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 42 deletions

View File

@ -61,14 +61,14 @@
"@vant/icons": "workspace:*", "@vant/icons": "workspace:*",
"@vitejs/plugin-vue": "^4.5.2", "@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^3.1.0", "@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-istanbul": "^1.1.0", "@vitest/coverage-istanbul": "^1.1.3",
"@vue/runtime-core": "^3.4.0-rc.1", "@vue/runtime-core": "^3.4.0-rc.1",
"@vue/test-utils": "^2.3.2", "@vue/test-utils": "^2.3.2",
"diffable-html": "^5.0.0", "diffable-html": "^5.0.0",
"jsdom": "^22.1.0", "jsdom": "^22.1.0",
"typescript": "^5.0.4", "typescript": "^5.0.4",
"vite": "^5.0.10", "vite": "^5.0.10",
"vitest": "^1.1.0", "vitest": "^1.1.3",
"vitest-canvas-mock": "^0.3.3", "vitest-canvas-mock": "^0.3.3",
"vue": "^3.4.0-rc.1", "vue": "^3.4.0-rc.1",
"vue-router": "^4.1.6" "vue-router": "^4.1.6"

View File

@ -1,10 +1,9 @@
import { defineConfig } from 'vitest/config'; import { defineConfig } from 'vitest/config';
import vitePluginVue from '@vitejs/plugin-vue'; import vitePluginVue from '@vitejs/plugin-vue';
import vitePluginJsx from '@vitejs/plugin-vue-jsx'; import vitePluginJsx from '@vitejs/plugin-vue-jsx';
import { cpus, totalmem } from 'os'; import { cpus } from 'os';
const cpuNum = Math.max(cpus().length - 1, 1); const cpuNum = Math.max(cpus().length - 1, 1);
const memory = totalmem();
export default defineConfig({ export default defineConfig({
test: { test: {
@ -25,10 +24,7 @@ export default defineConfig({
poolOptions: { poolOptions: {
vmThreads: { vmThreads: {
// limit the memory to avoid OOM // limit the memory to avoid OOM
memoryLimit: memoryLimit: Math.min(1 / (cpuNum * 2), 0.1),
typeof memory === 'number'
? memory * Math.min(1 / (cpuNum * 2), 0.1)
: undefined,
}, },
}, },
environment: 'jsdom', environment: 'jsdom',

74
pnpm-lock.yaml generated
View File

@ -92,8 +92,8 @@ importers:
specifier: ^3.1.0 specifier: ^3.1.0
version: 3.1.0(vite@5.0.10)(vue@3.4.0-rc.1) version: 3.1.0(vite@5.0.10)(vue@3.4.0-rc.1)
'@vitest/coverage-istanbul': '@vitest/coverage-istanbul':
specifier: ^1.1.0 specifier: ^1.1.3
version: 1.1.0(vitest@1.1.0) version: 1.1.3(vitest@1.1.3)
'@vue/runtime-core': '@vue/runtime-core':
specifier: ^3.4.0-rc.1 specifier: ^3.4.0-rc.1
version: 3.4.0-rc.1 version: 3.4.0-rc.1
@ -113,11 +113,11 @@ importers:
specifier: ^5.0.10 specifier: ^5.0.10
version: 5.0.10(@types/node@18.17.5) version: 5.0.10(@types/node@18.17.5)
vitest: vitest:
specifier: ^1.1.0 specifier: ^1.1.3
version: 1.1.0(@types/node@18.17.5)(jsdom@22.1.0) version: 1.1.3(@types/node@18.17.5)(jsdom@22.1.0)
vitest-canvas-mock: vitest-canvas-mock:
specifier: ^0.3.3 specifier: ^0.3.3
version: 0.3.3(vitest@1.1.0) version: 0.3.3(vitest@1.1.3)
vue: vue:
specifier: ^3.4.0-rc.1 specifier: ^3.4.0-rc.1
version: 3.4.0-rc.1(typescript@5.1.6) version: 3.4.0-rc.1(typescript@5.1.6)
@ -1306,7 +1306,6 @@ packages:
/@types/estree@1.0.5: /@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
dev: false
/@types/fs-extra@11.0.1: /@types/fs-extra@11.0.1:
resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==} resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==}
@ -1509,8 +1508,8 @@ packages:
vite: 5.0.10(@types/node@18.17.5) vite: 5.0.10(@types/node@18.17.5)
vue: 3.4.0-rc.1(typescript@5.1.6) vue: 3.4.0-rc.1(typescript@5.1.6)
/@vitest/coverage-istanbul@1.1.0(vitest@1.1.0): /@vitest/coverage-istanbul@1.1.3(vitest@1.1.3):
resolution: {integrity: sha512-sjHGQQu7lkJUYSBMOR3f9AyOlK1LBVr0v7LMar/4i167ltabRWlQ2STBDM4P6Wl659NAcHlZ/RXxrAgJPavDMA==} resolution: {integrity: sha512-pqx/RaLjJ7oxsbi0Vc/CjyXBXd86yQ0lKq1PPnk9BMNLqMTEWwfcTelcNrl41yK+IVRhHlFtwcjDva3VslbMMQ==}
peerDependencies: peerDependencies:
vitest: ^1.0.0 vitest: ^1.0.0
dependencies: dependencies:
@ -1523,45 +1522,46 @@ packages:
magicast: 0.3.2 magicast: 0.3.2
picocolors: 1.0.0 picocolors: 1.0.0
test-exclude: 6.0.0 test-exclude: 6.0.0
vitest: 1.1.0(@types/node@18.17.5)(jsdom@22.1.0) vitest: 1.1.3(@types/node@18.17.5)(jsdom@22.1.0)
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
/@vitest/expect@1.1.0: /@vitest/expect@1.1.3:
resolution: {integrity: sha512-9IE2WWkcJo2BR9eqtY5MIo3TPmS50Pnwpm66A6neb2hvk/QSLfPXBz2qdiwUOQkwyFuuXEUj5380CbwfzW4+/w==} resolution: {integrity: sha512-MnJqsKc1Ko04lksF9XoRJza0bGGwTtqfbyrsYv5on4rcEkdo+QgUdITenBQBUltKzdxW7K3rWh+nXRULwsdaVg==}
dependencies: dependencies:
'@vitest/spy': 1.1.0 '@vitest/spy': 1.1.3
'@vitest/utils': 1.1.0 '@vitest/utils': 1.1.3
chai: 4.3.10 chai: 4.3.10
dev: true dev: true
/@vitest/runner@1.1.0: /@vitest/runner@1.1.3:
resolution: {integrity: sha512-zdNLJ00pm5z/uhbWF6aeIJCGMSyTyWImy3Fcp9piRGvueERFlQFbUwCpzVce79OLm2UHk9iwaMSOaU9jVHgNVw==} resolution: {integrity: sha512-Va2XbWMnhSdDEh/OFxyUltgQuuDRxnarK1hW5QNN4URpQrqq6jtt8cfww/pQQ4i0LjoYxh/3bYWvDFlR9tU73g==}
dependencies: dependencies:
'@vitest/utils': 1.1.0 '@vitest/utils': 1.1.3
p-limit: 5.0.0 p-limit: 5.0.0
pathe: 1.1.1 pathe: 1.1.1
dev: true dev: true
/@vitest/snapshot@1.1.0: /@vitest/snapshot@1.1.3:
resolution: {integrity: sha512-5O/wyZg09V5qmNmAlUgCBqflvn2ylgsWJRRuPrnHEfDNT6tQpQ8O1isNGgo+VxofISHqz961SG3iVvt3SPK/QQ==} resolution: {integrity: sha512-U0r8pRXsLAdxSVAyGNcqOU2H3Z4Y2dAAGGelL50O0QRMdi1WWeYHdrH/QWpN1e8juWfVKsb8B+pyJwTC+4Gy9w==}
dependencies: dependencies:
magic-string: 0.30.5 magic-string: 0.30.5
pathe: 1.1.1 pathe: 1.1.1
pretty-format: 29.7.0 pretty-format: 29.7.0
dev: true dev: true
/@vitest/spy@1.1.0: /@vitest/spy@1.1.3:
resolution: {integrity: sha512-sNOVSU/GE+7+P76qYo+VXdXhXffzWZcYIPQfmkiRxaNCSPiLANvQx5Mx6ZURJ/ndtEkUJEpvKLXqAYTKEY+lTg==} resolution: {integrity: sha512-Ec0qWyGS5LhATFQtldvChPTAHv08yHIOZfiNcjwRQbFPHpkih0md9KAbs7TfeIfL7OFKoe7B/6ukBTqByubXkQ==}
dependencies: dependencies:
tinyspy: 2.2.0 tinyspy: 2.2.0
dev: true dev: true
/@vitest/utils@1.1.0: /@vitest/utils@1.1.3:
resolution: {integrity: sha512-z+s510fKmYz4Y41XhNs3vcuFTFhcij2YF7F8VQfMEYAAUfqQh0Zfg7+w9xdgFGhPf3tX3TicAe+8BDITk6ampQ==} resolution: {integrity: sha512-Dyt3UMcdElTll2H75vhxfpZu03uFpXRCHxWnzcrFjZxT1kTbq8ALUYIeBgGolo1gldVdI0YSlQRacsqxTwNqwg==}
dependencies: dependencies:
diff-sequences: 29.6.3 diff-sequences: 29.6.3
estree-walker: 3.0.3
loupe: 2.3.7 loupe: 2.3.7
pretty-format: 29.7.0 pretty-format: 29.7.0
dev: true dev: true
@ -2490,6 +2490,12 @@ packages:
/estree-walker@2.0.2: /estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
/estree-walker@3.0.3:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
dependencies:
'@types/estree': 1.0.5
dev: true
/esutils@2.0.3: /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
@ -4041,8 +4047,8 @@ packages:
/util-deprecate@1.0.2: /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
/vite-node@1.1.0(@types/node@18.17.5): /vite-node@1.1.3(@types/node@18.17.5):
resolution: {integrity: sha512-jV48DDUxGLEBdHCQvxL1mEh7+naVy+nhUUUaPAZLd3FJgXuxQiewHcfeZebbJ6onDqNGkP4r3MhQ342PRlG81Q==} resolution: {integrity: sha512-BLSO72YAkIUuNrOx+8uznYICJfTEbvBAmWClY3hpath5+h1mbPS5OMn42lrTxXuyCazVyZoDkSRnju78GiVCqA==}
engines: {node: ^18.0.0 || >=20.0.0} engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true hasBin: true
dependencies: dependencies:
@ -4134,17 +4140,17 @@ packages:
fsevents: 2.3.3 fsevents: 2.3.3
dev: false dev: false
/vitest-canvas-mock@0.3.3(vitest@1.1.0): /vitest-canvas-mock@0.3.3(vitest@1.1.3):
resolution: {integrity: sha512-3P968tYBpqYyzzOaVtqnmYjqbe13576/fkjbDEJSfQAkHtC5/UjuRHOhFEN/ZV5HVZIkaROBUWgazDKJ+Ibw+Q==} resolution: {integrity: sha512-3P968tYBpqYyzzOaVtqnmYjqbe13576/fkjbDEJSfQAkHtC5/UjuRHOhFEN/ZV5HVZIkaROBUWgazDKJ+Ibw+Q==}
peerDependencies: peerDependencies:
vitest: '*' vitest: '*'
dependencies: dependencies:
jest-canvas-mock: 2.5.2 jest-canvas-mock: 2.5.2
vitest: 1.1.0(@types/node@18.17.5)(jsdom@22.1.0) vitest: 1.1.3(@types/node@18.17.5)(jsdom@22.1.0)
dev: true dev: true
/vitest@1.1.0(@types/node@18.17.5)(jsdom@22.1.0): /vitest@1.1.3(@types/node@18.17.5)(jsdom@22.1.0):
resolution: {integrity: sha512-oDFiCrw7dd3Jf06HoMtSRARivvyjHJaTxikFxuqJjO76U436PqlVw1uLn7a8OSPrhSfMGVaRakKpA2lePdw79A==} resolution: {integrity: sha512-2l8om1NOkiA90/Y207PsEvJLYygddsOyr81wLQ20Ra8IlLKbyQncWsGZjnbkyG2KwwuTXLQjEPOJuxGMG8qJBQ==}
engines: {node: ^18.0.0 || >=20.0.0} engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
@ -4169,11 +4175,11 @@ packages:
optional: true optional: true
dependencies: dependencies:
'@types/node': 18.17.5 '@types/node': 18.17.5
'@vitest/expect': 1.1.0 '@vitest/expect': 1.1.3
'@vitest/runner': 1.1.0 '@vitest/runner': 1.1.3
'@vitest/snapshot': 1.1.0 '@vitest/snapshot': 1.1.3
'@vitest/spy': 1.1.0 '@vitest/spy': 1.1.3
'@vitest/utils': 1.1.0 '@vitest/utils': 1.1.3
acorn-walk: 8.3.1 acorn-walk: 8.3.1
cac: 6.7.14 cac: 6.7.14
chai: 4.3.10 chai: 4.3.10
@ -4189,7 +4195,7 @@ packages:
tinybench: 2.5.1 tinybench: 2.5.1
tinypool: 0.8.1 tinypool: 0.8.1
vite: 5.0.10(@types/node@18.17.5) vite: 5.0.10(@types/node@18.17.5)
vite-node: 1.1.0(@types/node@18.17.5) vite-node: 1.1.3(@types/node@18.17.5)
why-is-node-running: 2.2.2 why-is-node-running: 2.2.2
transitivePeerDependencies: transitivePeerDependencies:
- less - less