We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
browser_error
Disconnecting a browser shouldn't send browser_error to reporters.
Start karma server and capture a browser manually. Once a test run is done, close the browser manually. As a result, reporter's onBrowserError method is called back with error='Disconnectedundefined': https://github.com/karma-runner/karma/blob/v1.7.1/lib/browser.js#L40
onBrowserError
error='Disconnectedundefined'
Seems there is no much sense in this event after the test run. The problem is that reporters should filter out such events as it's not an error.
karma --version
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behaviour
Disconnecting a browser shouldn't send
browser_error
to reporters.Actual behaviour
Start karma server and capture a browser manually. Once a test run is done, close the browser manually.
As a result, reporter's
onBrowserError
method is called back witherror='Disconnectedundefined'
: https://github.com/karma-runner/karma/blob/v1.7.1/lib/browser.js#L40Seems there is no much sense in this event after the test run. The problem is that reporters should filter out such events as it's not an error.
Environment Details
karma --version
): 1.7.1The text was updated successfully, but these errors were encountered: