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 step throws an exception, it just throws the string, rather than an actual Error object. This is bad because when an error is thrown, there is no stack trace to work with, so it's difficult to figure out the source of the error.
throw new Error('whatever');
The text was updated successfully, but these errors were encountered:
When step throws an exception, it just throws the string, rather than an actual
Error
object. This is bad because when an error is thrown, there is no stack trace to work with, so it's difficult to figure out the source of the error.The text was updated successfully, but these errors were encountered: