testplane 8.22.1 → 8.22.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testplane",
3
- "version": "8.22.1",
3
+ "version": "8.22.2",
4
4
  "description": "Tests framework based on mocha and wdio",
5
5
  "main": "build/src/index.js",
6
6
  "files": [
@@ -6,12 +6,13 @@ import { GlobalHelper } from "./types";
6
6
  export { Testplane as default } from "./testplane";
7
7
  export { Key } from "webdriverio";
8
8
  export * from "./mock";
9
- export type { WdioBrowser, TestResult, Test, Suite, TestError, HermioneCtx, GlobalHelper, TestplaneCtx, TestFunctionCtx, } from "./types";
9
+ export type { WdioBrowser, TestResult, Test, Suite, TestError, HermioneCtx, GlobalHelper, TestplaneCtx, TestFunction, TestFunctionCtx, } from "./types";
10
10
  export type { Config } from "./config";
11
11
  export type { ConfigInput, AssertViewOpts } from "./config/types";
12
12
  export type { TestCollection, FormatterTreeSuite, FormatterTreeTest, FormatterTreeMainRunnable, FormatterListTest, } from "./test-collection";
13
13
  export type { StatsResult } from "./stats";
14
14
  import type { TestDefinition, SuiteDefinition, TestHookDefinition } from "./test-reader/test-object/types";
15
+ export type { TestDefinition, SuiteDefinition, TestHookDefinition };
15
16
  declare global {
16
17
  var it: TestDefinition;
17
18
  var describe: SuiteDefinition;
@@ -18,7 +18,7 @@ import { CoordBounds, LooksSameOptions } from "looks-same";
18
18
  export type { Browser as WdioBrowser } from "webdriverio";
19
19
  export type { Test } from "../test-reader/test-object/test";
20
20
  export type { Suite } from "../test-reader/test-object/suite";
21
- export type { TestFunctionCtx } from "../test-reader/test-object/types";
21
+ export type { TestFunction, TestFunctionCtx } from "../test-reader/test-object/types";
22
22
  export interface RootSuite extends Suite {
23
23
  root: true;
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testplane",
3
- "version": "8.22.1",
3
+ "version": "8.22.2",
4
4
  "description": "Tests framework based on mocha and wdio",
5
5
  "main": "build/src/index.js",
6
6
  "files": [