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
newPromise((resolve,reject)=>{if(Math.random()>0.5){resolve("foo");}else{reject("bar");// We should `reject(new Error("bar"))`}});Promise.reject("foo");// We should `reject(new Error("foo"))`
Rejecting a non Error variable is bad.
The text was updated successfully, but these errors were encountered:
Rejecting a non
Error
variable is bad.The text was updated successfully, but these errors were encountered: