mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-01 04:09:12 +01:00
* feat: add test integration for pi-hole * refactor: test integration for pi-hole * fix: multiple secrets of same type could be used for integration creation * fix: remove integration test connection test and add mock for test-connection function * fix: add missing onUpdateFn to mysql integration secrets * fix: format issues * feat: add home assistant test connection * fix: deepsource issues * test: add system integration tests for test connection * fix: add before all for pulling home assistant image * test: add unit tests for handleTestConnectionResponseAsync * test: add unit test for testConnectionAsync * test: add mroe tests to integration-test-connection * fix: deepsource issues * fix: deepsource issue * chore: address pull request feedback
25 lines
461 B
TypeScript
25 lines
461 B
TypeScript
export const extractErrorMessage = (error: unknown) => {
|
|
if (error instanceof Error) {
|
|
return error.message;
|
|
}
|
|
|
|
if (typeof error === "string") {
|
|
return error;
|
|
}
|
|
|
|
return "Unknown error";
|
|
};
|
|
|
|
export abstract class FlattenError extends Error {
|
|
constructor(
|
|
message: string,
|
|
private flattenResult: Record<string, unknown>,
|
|
) {
|
|
super(message);
|
|
}
|
|
|
|
public flatten(): Record<string, unknown> {
|
|
return this.flattenResult;
|
|
}
|
|
}
|