Skip to content

Commit e0ebac1

Browse files
committed
feat: colored logs
1 parent b466334 commit e0ebac1

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/api/worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class WdioExtensionWorker extends EventEmitter implements WdioExtensionWo
6969
...process.env,
7070
WDIO_EXTENSION_WORKER_CID: this.cid,
7171
WDIO_EXTENSION_WORKER_WS_URL: wsUrl,
72-
FORCE_COLOR: '0',
72+
FORCE_COLOR: '1',
7373
}
7474
// @ts-expect-error
7575
delete env.ELECTRON_RUN_AS_NODE

src/test/runHandler.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,9 @@ export async function runHandler(request: vscode.TestRunRequest, token: vscode.C
7171
reporter.updateTestStatus(result.detail)
7272
}
7373
if (result.log) {
74-
run.appendOutput('* -- Report of the WebdriverIO ----------------------------------------------- *\r\n')
7574
run.appendOutput(result.log.replace(/\n/g, '\r\n'))
7675
}
7776
if (runner.stdout && configManager.globalConfig.showOutput) {
78-
run.appendOutput('* -- Output of the WebdriverIO ----------------------------------------------- *\r\n')
7977
run.appendOutput(runner.stdout.replace(/\n/g, '\r\n'))
8078
}
8179
} catch (e) {

0 commit comments

Comments
 (0)