Skip to content
New issue

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

Grakkit doesn't report all errors #41

Open
MercerK opened this issue Mar 7, 2023 · 0 comments
Open

Grakkit doesn't report all errors #41

MercerK opened this issue Mar 7, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@MercerK
Copy link
Contributor

MercerK commented Mar 7, 2023

Grakkit fails to report a lot of errors that happens within the JavaScript side, which makes it rather difficult to troubleshoot specific bugs as you never see the error unless you have a try/catch around that particular clause.

For example:

setInterval(() => {
  new Error('test')
}, 2000)

setImmediate(() => {
  new Error('test')
}, 2000)

setTimeout(() => {
  new Error('test')
}, 2000)

new Promise((resolve) => {
  throw new Error('test')
})

You will never see that error get populated in the console or anywhere else. This is extremely frustrating.

@MercerK MercerK added the bug Something isn't working label Mar 7, 2023
@MercerK MercerK changed the title Grakkit doesn't report errors Grakkit doesn't report all errors Mar 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant