From 0cc7d4c1b392f40b15805122a2b6484c8a8bc94c Mon Sep 17 00:00:00 2001 From: Henrik Fuchs Date: Sat, 23 Sep 2023 17:46:44 +0200 Subject: [PATCH] fix: export `runSubscription` function (#35) --- src/Testing/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Testing/index.ts b/src/Testing/index.ts index 18aba09..ead3d5b 100644 --- a/src/Testing/index.ts +++ b/src/Testing/index.ts @@ -6,6 +6,7 @@ import { getCreateModelAndProps, getCreateUpdateArgs } from "./getCreateUpdateAr import { getUpdateAndExecCmdFn, getUpdateFn } from "./getUpdateFn"; import { initAndExecCmd } from "./initAndExecCmd"; import { renderWithModel } from "./renderWithModel"; +import { runSubscription } from "./runSubscription"; export type { ModelAndPropsFactory, RenderWithModelOptions, UpdateArgsFactory }; @@ -19,4 +20,5 @@ export { getUpdateFn, initAndExecCmd, renderWithModel, + runSubscription, };