Understand the limitations of `no-commented-out-tests`
mainThe no-commented-out-tests rule relies on literal function name matching within comments. It cannot detect commented-out tests that use aliased functions or custom test extensions.
For example, the rule will not catch these patterns:
// const testSkip = test.skip;
// testSkip('skipped test', () => {});
// const custom = test.extend({});
// custom('does not have function body');