From 10a8f14dea502c651e9c7285a1f97709e99b33de Mon Sep 17 00:00:00 2001 From: Mohammad Rad Date: Thu, 5 Dec 2024 21:10:22 -0800 Subject: [PATCH] fix type export of testcontext --- packages/shortest/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shortest/src/index.ts b/packages/shortest/src/index.ts index 0d56a12a..3bc1899d 100644 --- a/packages/shortest/src/index.ts +++ b/packages/shortest/src/index.ts @@ -131,5 +131,5 @@ export const test: TestAPI = Object.assign( } ); -export { TestContext }; +export type { TestContext }; export type { ShortestConfig };