This commit is contained in:
Chris Wanstrath 2025-10-08 10:01:35 -07:00
parent 80183653f4
commit 0bb0af6c1e

View File

@ -128,7 +128,7 @@ test("CALL_NATIVE - function not found", async () => {
const vm = new VM(bytecode)
await expect(vm.run()).rejects.toThrow('CALL_NATIVE: function not found: nonexistent')
expect(vm.run()).rejects.toThrow('CALL_NATIVE: function not found: nonexistent')
})
test("CALL_NATIVE - using result in subsequent operations", async () => {