1import posix from "./index"; 2 3test("statvfs returns something", () => { 4 expect(posix.statvfs?.("/")?.f_namemax).toBeGreaterThan(0); 5}); 6 7