diff options
Diffstat (limited to 'test/bun.js/process.test.js')
-rw-r--r-- | test/bun.js/process.test.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/bun.js/process.test.js b/test/bun.js/process.test.js index e5517e7f6..8cc3e6b87 100644 --- a/test/bun.js/process.test.js +++ b/test/bun.js/process.test.js @@ -178,3 +178,7 @@ it("process.emitWarning", () => { it("process.execArgv", () => { expect(process.execArgv instanceof Array).toBe(true); }); + +it("process.binding", () => { + expect(() => process.binding("buffer")).toThrow(); +}); |