mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-26 21:47:49 +00:00
* fix(deps): detect constant dynamic imports in ownership audit * feat(plugins): move bonjour discovery into bundled plugin * test(plugins): remove moved bonjour core tests * fix(plugins): harden bonjour disable and console restore * fix(plugins): split gateway discovery ids from services * fix(plugins): harden bonjour advertiser shutdown * fix(plugins): clean up bonjour split lint
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { formatBonjourError } from "./errors.js";
|
|
|
|
describe("formatBonjourError", () => {
|
|
it("formats named errors with their type prefix", () => {
|
|
const err = new Error("timed out");
|
|
err.name = "AbortError";
|
|
expect(formatBonjourError(err)).toBe("AbortError: timed out");
|
|
});
|
|
|
|
it("avoids duplicating named errors with blank messages", () => {
|
|
const err = new Error("");
|
|
err.name = "AbortError";
|
|
expect(formatBonjourError(err)).toBe("AbortError");
|
|
});
|
|
|
|
it("treats whitespace-only messages as blank", () => {
|
|
const named = new Error(" ");
|
|
named.name = "AbortError";
|
|
expect(formatBonjourError(named)).toBe("AbortError");
|
|
|
|
expect(formatBonjourError(new Error(" "))).toBe("Error");
|
|
});
|
|
|
|
it("falls back to plain error strings and non-error values", () => {
|
|
expect(formatBonjourError(new Error(""))).toBe("Error");
|
|
expect(formatBonjourError("boom")).toBe("boom");
|
|
expect(formatBonjourError(42)).toBe("42");
|
|
});
|
|
});
|