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
chore: turn off mocha/handle-done-callback rule as a workaround
The mocha plugin incorretly reports the following signature as a
violation of `mocha/handle-done-callback` (misinterpreting `this`
as `done`).
```ts
before(async function setupApplication(this: Mocha.Context) {
this.timeout(6000);
// ...
});
```
See lo1tuma/eslint-plugin-mocha#270
Signed-off-by: Raymond Feng <[email protected]>
0 commit comments