diff options
author | 2022-11-18 23:03:39 -0800 | |
---|---|---|
committer | 2022-11-18 23:03:39 -0800 | |
commit | 43b4e1b67bad69ac4da193ea2ac603b1a985839e (patch) | |
tree | d1a630d285163f55853d56afac82a586e1a999fe /src/bun.js/api/server.zig | |
parent | f3fb71205110448a4fb69ee39d11dc092a97069c (diff) | |
download | bun-43b4e1b67bad69ac4da193ea2ac603b1a985839e.tar.gz bun-43b4e1b67bad69ac4da193ea2ac603b1a985839e.tar.zst bun-43b4e1b67bad69ac4da193ea2ac603b1a985839e.zip |
bun test matchers and tests (#1526)
* ignore webkit for cherry-pick
* toContain and toBeTruthy
* toBe null, undefined, falsy, toHaveProperty, .not
* markBindings
* remove toHaveProperty, undo ignore webkit, more tests
* undo ignore webkit
* remove bad tests
* check if length property exists for toHaveLength()
* fix call signature
* handle argument that is not an integer
* getLengthOfArray returns u64
* switch to truncate
* toHaveLength() edge cases
* add toBooleanSlow()
* infinity, nan, negative
Diffstat (limited to 'src/bun.js/api/server.zig')
-rw-r--r-- | src/bun.js/api/server.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/api/server.zig b/src/bun.js/api/server.zig index 1f47af8a0..866b08e34 100644 --- a/src/bun.js/api/server.zig +++ b/src/bun.js/api/server.zig @@ -3942,7 +3942,7 @@ pub fn NewServer(comptime ssl_enabled_: bool, comptime debug_mode_: bool) type { _: js.ExceptionRef, ) js.JSObjectRef { var globalThis = ctx.ptr(); - + JSC.markBinding(@src()); if (arguments.len == 0) { const fetch_error = WebCore.Fetch.fetch_error_no_args; return JSPromise.rejectedPromiseValue(globalThis, ZigString.init(fetch_error).toErrorInstance(globalThis)).asRef(); |