We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb851c commit 4b33091Copy full SHA for 4b33091
1 file changed
packages/vscode-wdio-worker/src/test.ts
@@ -54,11 +54,9 @@ export async function runTest(this: WorkerMetaContext, options: RunTestOptions):
54
configFile = await creator(options.configPath, outputDir.json!)
55
options.configPath = configFile
56
wdioArgs.configPath = configFile
57
- }
58
-
59
- // The `stdout` must be true because the name of the logger is
60
- // the name of the file and the initialization of Write Stream will fail.
61
- if (!isWindows()) {
+ } else {
+ // The `stdout` must be true because the name of the logger is
+ // the name of the file and the initialization of Write Stream will fail.
62
wdioArgs.reporters = [[VSCODE_REPORTER_PATH, { stdout: true, outputDir: outputDir.json }]]
63
}
64
0 commit comments