Open
Description
Should the qunit/no-arrow-tests rule also catch modules with arrow functions? Or should we have a new separate rule no-arrow-modules
?
Bad:
module('my module', (hooks) => {
// ...
});
Good:
module('my module', function(hooks) {
// ...
});