(cmd: Command)
| 269 | } |
| 270 | |
| 271 | const isPluginMatch = (cmd: Command): boolean => |
| 272 | cmd.type === 'plugin' && cmd.featureCode === storedCommand.featureCode && isSamePlugin(cmd) |
| 273 | |
| 274 | const nameMatch = commands.value.find( |
| 275 | (cmd) => isPluginMatch(cmd) && cmd.name === storedCommand.name |
no test coverage detected