We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e6d1a8 commit 58c1811Copy full SHA for 58c1811
src/config/types.ts
@@ -1,6 +1,6 @@
1
import type { BrowserConfig } from "./browser-config";
2
import type { BrowserTestRunEnvOptions } from "../runner/browser-env/vite/types";
3
-import type { Suite, Test } from "../types";
+import type { Test } from "../types";
4
import type { ChildProcessWithoutNullStreams } from "child_process";
5
import { RequestOptions } from "https";
6
@@ -215,7 +215,7 @@ export interface MochaOpts {
215
isWorker?: boolean;
216
217
/** Interface name or path to file with custom interface implementation. */
218
- ui?: string | Suite;
+ ui?: string | ((suite: unknown) => void);
219
}
220
221
export interface SystemConfig {
0 commit comments