/** * Migration guide from Jest to Vitest * * This module provides helpers and documentation for migrating from Jest to Vitest */ /** * Mapping of Jest APIs to Vitest equivalents */ export declare const JestToVitestMapping: { describe: string; 'it/test': string; beforeEach: string; afterEach: string; beforeAll: string; afterAll: string; expect: string; 'expect.assertions': string; 'expect.hasAssertions': string; 'jest.fn()': string; 'jest.mock()': string; 'jest.spyOn()': string; 'jest.clearAllMocks()': string; 'jest.resetAllMocks()': string; 'jest.restoreAllMocks()': string; 'jest.useFakeTimers()': string; 'jest.useRealTimers()': string; 'jest.advanceTimersByTime()': string; 'jest.runAllTimers()': string; 'process.env': string; }; /** * Common migration steps */ export declare const migrationSteps: string[]; /** * Configuration migration helper */ export declare function convertJestConfigToVitest(jestConfig: Record): Record; /** * Code transformation examples */ export declare const codeTransformations: { imports: { before: string; after: string; }; mocking: { before: string; after: string; }; timers: { before: string; after: string; }; }; //# sourceMappingURL=index.d.ts.map