Bug Summary:
The Usage section of the README states that the plugin should be installed via:
require('cypress-log-to-output').install(on)
However, this will cause a crash due to options not being passed to install. It appears install is written with the expectation that options is passed as an object:
Version: v1.1.0
Bug Summary: The Usage section of the README states that the plugin should be installed via:
require('cypress-log-to-output').install(on)
However, this will cause a crash due to
options
not being passed toinstall
. It appearsinstall
is written with the expectation thatoptions
is passed as an object:Workaround Install the plugin via:
require('cypress-log-to-output').install(on, undefined, {})