In my Chai tests I often find myself wanting to use their assertions that are something like .to.be.empty, .to.be.true e.t.c., because I find them
.to.be.empty
.to.be.true
Just found another option using Relative Glob Patterns:
In your .eslintrc file:
.eslintrc
overrides: [ { files: "*.test.js", rules: { "no-unused-expressions": "off" } } ]