From 8474b54ce047adbf7efb2997f83e66c0df22b76b Mon Sep 17 00:00:00 2001 From: Lenz Weber-Tronic Date: Wed, 27 Nov 2024 14:33:02 +0100 Subject: [PATCH] export `RenderWithoutActAsync` type --- src/pure.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pure.ts b/src/pure.ts index 5514e7816..5e2ce46b4 100644 --- a/src/pure.ts +++ b/src/pure.ts @@ -19,7 +19,11 @@ export type {SnapshotStream} from './renderHookToSnapshotStream.js' export type {Assertable} from './assertable.js' -export {renderWithoutAct, cleanup} from './renderWithoutAct.js' +export { + renderWithoutAct, + cleanup, + type RenderWithoutActAsync, +} from './renderWithoutAct.js' export {userEventWithoutAct} from './useWithoutAct.js' export {disableActEnvironment} from './disableActEnvironment.js' export {withDisabledActEnvironment} from './withDisabledActEnvironment.js'