Alexander Sorokin created CB-12639:
--------------------------------------
Summary: Battery Status plugin: tests should use console.error()
instead of non-existing console.err()
Key: CB-12639
URL: https://issues.apache.org/jira/browse/CB-12639
Project: Apache Cordova
Issue Type: Test
Components: Plugin Battery Status
Affects Versions: Master
Reporter: Alexander Sorokin
Assignee: Alexander Sorokin
Priority: Minor
The following code may lead to an app crash because console.err() doesn't exist:
{code}
afterEach(function () {
if (!batteryStatusUnsupported) {
try {
window.removeEventListener("batterycritical", onEvent, false);
}
catch (e) {
console.err('Error removing batterycritical event listener: ' + e);
}
}
});
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]