testplane 8.22.3 → 8.22.4

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.3",
3
+ "version": "8.22.4",
4
4
  "description": "Tests framework based on mocha and wdio",
5
5
  "main": "build/src/index.js",
6
6
  "files": [
@@ -2,7 +2,7 @@
2
2
  /// <reference types="node" />
3
3
  import type { BrowserConfig } from "./browser-config";
4
4
  import type { BrowserTestRunEnvOptions } from "../runner/browser-env/vite/types";
5
- import type { Suite, Test } from "../types";
5
+ import type { Test } from "../types";
6
6
  import type { ChildProcessWithoutNullStreams } from "child_process";
7
7
  import { RequestOptions } from "https";
8
8
  export interface CompareOptsConfig {
@@ -183,7 +183,7 @@ export interface MochaOpts {
183
183
  /** Should be `true` if `Mocha` process is running in a worker process. */
184
184
  isWorker?: boolean;
185
185
  /** Interface name or path to file with custom interface implementation. */
186
- ui?: string | Suite;
186
+ ui?: string | ((suite: unknown) => void);
187
187
  }
188
188
  export interface SystemConfig {
189
189
  debug: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testplane",
3
- "version": "8.22.3",
3
+ "version": "8.22.4",
4
4
  "description": "Tests framework based on mocha and wdio",
5
5
  "main": "build/src/index.js",
6
6
  "files": [