[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

fix: correctly reset provided values (#4775)

authored by

Vladimir and committed by
GitHub
(Dec 18, 2023, 3:01 PM +0100) 5a71eb30 c4e865bb

+1 -2
+1 -2
packages/vitest/src/node/workspace.ts
··· 360 360 this.server.close(), 361 361 this.typechecker?.stop(), 362 362 this.browser?.close(), 363 - () => this._provided = ({} as any), 364 - ].filter(Boolean)) 363 + ].filter(Boolean)).then(() => this._provided = {} as any) 365 364 } 366 365 return this.closingPromise 367 366 }