archfz / cypress-terminal-report

Plugin for cypress. Logs to terminal and files, mimicking cypress UI.
MIT License
507 stars 39 forks source link

How to filter `Verbose level` #222

Closed hadothanh closed 1 year ago

hadothanh commented 1 year ago

Currently I saw list of log level are supported:

https://github.com/archfz/cypress-terminal-report#optionscollecttypes
array; default: ['cons:log','cons:info', 'cons:warn', 'cons:error', 'cy:log', 'cy:xhr', 'cy:request', 'cy:intercept', 'cy:command'] What types of logs to collect and print. By default all types are enabled. The 'cy:command' is the general type that contain all types of commands that are not specially treated.

how i access cons:verbose Screenshot 2023-11-06 at 20 05 42

archfz commented 1 year ago

To which method are you refering to https://developer.mozilla.org/en-US/docs/Web/API/console Only info, log, warn and error are captured at the moment by this plugin.

hadothanh commented 1 year ago

thank you @archfz for reply