Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2025-04-02 12:43:14 +00:00
parent 4b72bef651
commit dbb232a3d8
1389 changed files with 209949 additions and 542 deletions

View file

@ -90,8 +90,10 @@ it('spies on the constructor', () => {
}
const constructorCall = vi.fn<
[ConstructorParameters<typeof OriginalClass>, Function],
typeof OriginalClass
(
args: ConstructorParameters<typeof OriginalClass>,
next: () => typeof OriginalClass
) => typeof OriginalClass
>((args, next) => next())
const ProxyClass = createProxy(OriginalClass, {

View file

@ -6,7 +6,7 @@ beforeAll(() => {
})
afterEach(() => {
vi.resetAllMocks()
vi.clearAllMocks()
})
afterAll(() => {