Merge pull request #16326 from nextcloud/dependabot/npm_and_yarn/vitest-4.0.8

build(deps-dev): Bump vitest from 3.2.4 to 4.0.8
This commit is contained in:
github-actions[bot] 2025-11-15 11:30:00 +00:00 committed by GitHub
commit 1c80fb0a11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 941 additions and 1102 deletions

2008
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -94,7 +94,7 @@
"@rspack/plugin-node-polyfill": "^0.5.8",
"@total-typescript/ts-reset": "^0.6.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/coverage-v8": "^4.0.9",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"css-loader": "^7.1.2",
@ -102,10 +102,11 @@
"jsdom": "^27.0.1",
"openapi-typescript": "^7.10.1",
"regenerator-runtime": "^0.14.1",
"sass": "^1.94.0",
"sass-loader": "^16.0.6",
"stylelint-use-logical": "^2.1.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"vitest": "^4.0.9",
"vue-loader": "^17.4.2",
"wasm-check": "^2.1.2"
},

View file

@ -50,12 +50,6 @@ vi.mock('@nextcloud/capabilities', () => ({
HTMLAudioElement.prototype.setSinkId = vi.fn()
window.IntersectionObserver = vi.fn(() => ({
observe: vi.fn(),
unobserve: vi.fn(),
disconnect: vi.fn(),
}))
window._oc_webroot = '/nc-webroot' // used by getRootUrl() | since @nextcloud/router 2.2.1
global.appName = 'spreed'
@ -122,16 +116,22 @@ function myArrayBuffer() {
global.Blob.prototype.arrayBuffer = Blob.prototype.arrayBuffer || myArrayBuffer
global.BroadcastChannel = vi.fn(() => ({
postMessage: vi.fn(),
addEventListener: vi.fn(),
}))
global.BroadcastChannel = vi.fn(class {
postMessage = vi.fn()
addEventListener = vi.fn()
})
global.ResizeObserver = vi.fn(() => ({
observe: vi.fn(),
unobserve: vi.fn(),
disconnect: vi.fn(),
}))
global.IntersectionObserver = vi.fn(class {
observe = vi.fn()
unobserve = vi.fn()
disconnect = vi.fn()
})
global.ResizeObserver = vi.fn(class {
observe = vi.fn()
unobserve = vi.fn()
disconnect = vi.fn()
})
global.structuredClone = vi.fn((val) => JSON.parse(JSON.stringify(val)))