mc-publish/tests/unit/utils/errors/error.spec.ts

12 lines
357 B
TypeScript
Raw Normal View History

import { isError } from "@/utils/errors/error";
describe("isError", () => {
test("returns true if the input is an instance of Error", () => {
expect(isError(new Error("test error"))).toBe(true);
});
test("returns false if the input is not an instance of Error", () => {
expect(isError("not an error")).toBe(false);
});
});