1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-24 17:56:45 +02:00

Reduce wdio verbosity (#2768)

This avoids the need to scroll through pages of useless warnings to find
an actual test failure.
This commit is contained in:
Dustin J. Mitchell
2025-06-03 11:47:38 -04:00
committed by GitHub
parent 74605c345c
commit 6ba7f2c654

View File

@ -83,7 +83,10 @@ export const config: WebdriverIO.Config = {
// webdriver: 'info', // webdriver: 'info',
// '@wdio/appium-service': 'info' // '@wdio/appium-service': 'info'
// }, // },
// logLevels: {
// Webdriverio outputs several lines per test, in the success case.
webdriverio: "error",
},
// If you only want to run your tests until a specific amount of tests have failed use // If you only want to run your tests until a specific amount of tests have failed use
// bail (default is 0 - don't bail, run all tests). // bail (default is 0 - don't bail, run all tests).
bail: 0, bail: 0,