( plugin: Pick<PluginConfig, 'groups' | 'context'>, )
| 42 | } |
| 43 | |
| 44 | function createCategories( |
| 45 | plugin: Pick<PluginConfig, 'groups' | 'context'>, |
| 46 | ): CategoryConfig[] { |
| 47 | return [ |
| 48 | { |
| 49 | slug: 'axe-a11y', |
| 50 | title: 'Axe Accessibility', |
| 51 | refs: axeGroupRefs(plugin), |
| 52 | }, |
| 53 | ]; |
| 54 | } |
| 55 | |
| 56 | function expandCategories( |
| 57 | plugin: Pick<PluginConfig, 'context'>, |
no test coverage detected