You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I am trying to see the error logs which occur in promise, but in console-feed no errors are being displayed though
those errors appear in a browser console. But the with the same code which is outside the promise those errors are displaying in console-feed console.
code without promise
console.log("test".includ('test'))
above code WORKING AS EXPECTED, but
code inside the promise
new Promise((resolve) => {
resolve();
}).then(() => stringIncludesTest());
function stringIncludesTest() {
let dummyString = "test";
console.log(dummyString.incldes("st"));
}
EXPECTED
Error should be display as :- ""a.incldes is not a function""
ACTUAL
Nothing is in console
NOTE : Browser console showing appropriate errors
The text was updated successfully, but these errors were encountered:
isaacking5
changed the title
Inside promise, errors are not displaying in the console
Inside promise, errors are not being displaying in the console
Oct 18, 2021
Description
When I am trying to see the error logs which occur in promise, but in console-feed no errors are being displayed though
those errors appear in a browser console. But the with the same code which is outside the promise those errors are displaying in console-feed console.
code without promise
above code WORKING AS EXPECTED, but
code inside the promise
EXPECTED
Error should be display as :- ""a.incldes is not a function""
ACTUAL
Nothing is in console
NOTE : Browser console showing appropriate errors
The text was updated successfully, but these errors were encountered: