mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-23 08:51:02 -05:00
11 lines
357 B
TypeScript
11 lines
357 B
TypeScript
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);
|
|
});
|
|
});
|