Files
Bohdan Triapitsyn 5cc37d0c33 fix: restore CLI validation and test baseline (#1857)
Fixed lazy CLI helper imports for tunnel flows
Restored update command version detection
Made web test and dead-code commands run reliably
2026-06-27 09:45:34 +03:00

32 lines
387 B
TypeScript

import {
afterAll,
afterEach,
beforeAll,
beforeEach,
describe,
expect,
it,
test,
vi,
} from 'vitest';
const mock = Object.assign(
<T extends (...args: never[]) => unknown>(implementation?: T) => vi.fn(implementation),
{
module: vi.mock,
},
);
export {
afterAll,
afterEach,
beforeAll,
beforeEach,
describe,
expect,
it,
mock,
test,
vi,
};