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
According to this issue with Mocha (Describe block with async function behaving weirdly #2975),
it is not recommended to use the async keyword in the describe callback argument.
Example piece of code to avoid:
describe('yyy',async()=>{});
Preferred code:
describe('yyy',()=>{});
Would you like to consider this rule?
Thanks for your time!
The text was updated successfully, but these errors were encountered:
According to this issue with Mocha (Describe block with async function behaving weirdly #2975),
it is not recommended to use the async keyword in the describe callback argument.
Example piece of code to avoid:
Preferred code:
Would you like to consider this rule?
Thanks for your time!
The text was updated successfully, but these errors were encountered: