@amiceli/vitest-cucumber
Version:
vitest tools to use Gherkin feature in unit tests
14 lines (13 loc) • 653 B
TypeScript
type VitestGlobal = {
describe: typeof import('vitest').describe;
test: typeof import('vitest').test;
afterAll: typeof import('vitest').afterAll;
beforeAll: typeof import('vitest').beforeAll;
onTestFailed: typeof import('vitest').onTestFailed;
};
declare let describeFn: VitestGlobal['describe'];
declare let testFn: VitestGlobal['test'];
declare let afterAllFn: VitestGlobal['afterAll'];
declare let beforeAllFn: VitestGlobal['beforeAll'];
declare let onTestFailedFn: VitestGlobal['onTestFailed'];
export { describeFn as describe, testFn as test, afterAllFn as afterAll, beforeAllFn as beforeAll, onTestFailedFn as onTestFailed, };