1import { test_err2str } from "./copy-path"; 2 3test("converting an error to a string", () => { 4 const s = test_err2str(Error("sample error")); 5 expect(s).toEqual("sample error"); 6}); 7 8