@rstest/core
Version:
The Rsbuild-based test tool.
17 lines (16 loc) • 807 B
TypeScript
declare global {
const test: typeof import('@rstest/core')['test'];
const describe: typeof import('@rstest/core')['describe'];
const it: typeof import('@rstest/core')['it'];
const expect: typeof import('@rstest/core')['expect'];
const assert: typeof import('@rstest/core')['assert'];
const beforeAll: typeof import('@rstest/core')['beforeAll'];
const afterAll: typeof import('@rstest/core')['afterAll'];
const beforeEach: typeof import('@rstest/core')['beforeEach'];
const afterEach: typeof import('@rstest/core')['afterEach'];
const onTestFinished: typeof import('@rstest/core')['onTestFinished'];
const onTestFailed: typeof import('@rstest/core')['onTestFailed'];
const rs: typeof import('@rstest/core')['rs'];
const rstest: typeof import('@rstest/core')['rstest'];
}
export {};