mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
19 lines
773 B
TypeScript
19 lines
773 B
TypeScript
declare global {
|
|
const suite: typeof import('vitest')['suite']
|
|
const test: typeof import('vitest')['test']
|
|
const describe: typeof import('vitest')['describe']
|
|
const it: typeof import('vitest')['it']
|
|
const chai: typeof import('vitest')['chai']
|
|
const expect: typeof import('vitest')['expect']
|
|
const assert: typeof import('vitest')['assert']
|
|
const sinon: typeof import('vitest')['sinon']
|
|
const spy: typeof import('vitest')['spy']
|
|
const mock: typeof import('vitest')['mock']
|
|
const stub: typeof import('vitest')['stub']
|
|
const beforeAll: typeof import('vitest')['beforeAll']
|
|
const afterAll: typeof import('vitest')['afterAll']
|
|
const beforeEach: typeof import('vitest')['beforeEach']
|
|
const afterEach: typeof import('vitest')['afterEach']
|
|
}
|
|
export {}
|