mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* binding uv * we did that * some more bindings * fix doc * fix uv * yo * static hash table nonsense <3 * huge refactor to the global object i am not ready for merge conflicts * it works part 3 * lose --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
27 lines
898 B
TypeScript
27 lines
898 B
TypeScript
describe("process.binding", () => {
|
|
test("process.binding('constants')", () => {
|
|
/* @ts-ignore */
|
|
const constants = process.binding("constants");
|
|
expect(constants).toBeDefined();
|
|
expect(constants).toHaveProperty("os");
|
|
expect(constants).toHaveProperty("crypto");
|
|
expect(constants).toHaveProperty("fs");
|
|
expect(constants).toHaveProperty("trace");
|
|
expect(constants).toHaveProperty("zlib");
|
|
});
|
|
test("process.binding('uv')", () => {
|
|
/* @ts-ignore */
|
|
const uv = process.binding("uv");
|
|
expect(uv).toBeDefined();
|
|
|
|
expect(uv).toHaveProperty("errname");
|
|
expect(uv).toHaveProperty("UV_EACCES");
|
|
expect(uv.errname(-4)).toBe("EINTR");
|
|
expect(uv.errname(5)).toBe("Unknown system error 5");
|
|
|
|
const map = uv.getErrorMap();
|
|
expect(map).toBeDefined();
|
|
expect(map.get(-56)).toEqual(["EISCONN", "socket is already connected"]);
|
|
});
|
|
});
|