From 579bd173ba3d44dd101ef0b33596ef86d4b629a0 Mon Sep 17 00:00:00 2001 From: epszaw Date: Wed, 21 Feb 2024 14:24:24 +0100 Subject: [PATCH] feat: export TestError type --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 859ba9994..3aeb869e3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,7 @@ import "expect-webdriverio"; import { GlobalHelper } from "./types"; export { Hermione as default } from "./hermione"; -export type { WdioBrowser, TestResult, Test, Suite } from "./types"; +export type { WdioBrowser, TestResult, Test, Suite, TestError } from "./types"; export type { Config } from "./config"; export type { ConfigInput } from "./config/types"; export type { TestCollection } from "./test-collection";