Skip to content

Commit

Permalink
fix: export AssertViewOpts type
Browse files Browse the repository at this point in the history
  • Loading branch information
KuznetsovRoman committed Mar 11, 2024
1 parent cc9d267 commit ae755d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import "expect-webdriverio";
import { GlobalHelper } from "./types";
export { Hermione as default } from "./hermione";

export type { WdioBrowser, TestResult, Test, Suite, TestError } from "./types";
export type { WdioBrowser, TestResult, Test, Suite, TestError, AssertViewOpts } from "./types";
export type { Config } from "./config";
export type { ConfigInput } from "./config/types";
export type { TestCollection } from "./test-collection";
Expand Down
2 changes: 2 additions & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export type { Browser as WdioBrowser } from "webdriverio";
export type { Test } from "../test-reader/test-object/test";
export type { Suite } from "../test-reader/test-object/suite";

export type { AssertViewOpts } from "../browser/commands/types";

export interface RootSuite extends Suite {
root: true;
}
Expand Down

0 comments on commit ae755d2

Please sign in to comment.