(pluginId: string, hook: string, cause: unknown)
| 722 | isStorageFailure(cause) ? cause : new StorageError({ message, cause }); |
| 723 | |
| 724 | const pluginStorageFailure = (pluginId: string, hook: string, cause: unknown): StorageFailure => |
| 725 | storageFailureFromUnknown(`${hook} failed for plugin ${pluginId}`, cause); |
| 726 | |
| 727 | const createDefaultMemoryDb = (tables: FumaTables): ExecutorDb => { |
| 728 | const version = "1.0.0"; |
no test coverage detected