Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/core/posix-node/src/other.test.ts
1067 views
1
import posix from "./index";
2
3
test("statvfs returns something", () => {
4
expect(posix.statvfs?.("/")?.f_namemax).toBeGreaterThan(0);
5
});
6
7