aboutsummaryrefslogtreecommitdiff
path: root/test (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-09-16fix: node compatibility with empty path string (#4693)Gravatar MrPalixir 1-0/+17
Co-authored-by: MrPalixir <73360179+MrPalixir@users.noreply.github.com>
2023-09-15fix(node/fs.watch): Check first char before trimming event filenames (#5505)Gravatar David Hewitt 1-4/+34
* Add failing test * fix(node/fs.watch): Don't lose first char in event * run prettier
2023-09-15fix(bundler): Add a space before minified require (#5521)Gravatar David Hewitt 1-0/+21
Fixes #5501
2023-09-15fix(request) handle undefined/null/empty signal on request (#5503)Gravatar Ciro Spaciari 1-0/+37
* handle undefined/null/empty signal on request * better approach
2023-09-15fix(corking) uncork if needed (#5525)Gravatar Ciro Spaciari 1-414/+442
* fix size limit * uncork if needed instead of terminating * undo unrelated changes
2023-09-15feat(runtime): add `process.binding` `uv`/`natives`/`config` + make global ↵Gravatar dave caruso 2-0/+27
object properties lazy (#5355) * 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>
2023-09-15Rename this fileGravatar Jarred Sumner 1-0/+0
2023-09-15Fixes #5465 (#5468)Gravatar Jarred Sumner 1-0/+25
* Fixes #5465 Fixes #5465 * Update tty.js * Update InternalModuleRegistryConstants.h --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-15Fixes #5461 (#5467)Gravatar Jarred Sumner 1-0/+9
* Fixes #5461 * Update runtime-transpiler.test.ts --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-15Implement `URL.canParse` (#5463)Gravatar Jarred Sumner 1-0/+47
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-15fix(proxy): allow empty string `http_proxy` env. (#5464)Gravatar Ai Hoshino 1-0/+29
Close: #5380
2023-09-15Revert "decode regex if needed (#5167)"Gravatar Jarred Sumner 1-5/+0
This reverts commit 32664df254be225dd195fcaf46994f0c550f9d22.
2023-09-15Make `bun run --silent` omit `"error: "..." exited with code 1` (#5459)Gravatar Jarred Sumner 1-24/+66
* Make --silent behave as expected * Make the "tsconfig.json extends" error a debug level --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-15Fix testGravatar Jarred Sumner 3-3/+2
2023-09-15Add missing `"size"` getter to `URLSearchParams` prototypeGravatar Jarred Sumner 1-0/+2
2023-09-15dup and close file descriptors (#5341)Gravatar Dylan Conway 4-0/+54
* track one shot fds * dup fd * skip for rearm on mac * dup if fd * cleanup * force unregister on close * deinitForceUnregister * test * add prompts --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-14fix(nitro) fix sourcemaps and JSSink closing (#5422)Gravatar Ciro Spaciari 3-0/+5653
* fix JSSink progress on sourcemap checking * fix sourcemaps * update JSSink fix * undo + tests --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-14fix http set cookie headers (#5428)Gravatar Dylan Conway 1-0/+18
* allow multiple set-cookie values * make it work for `getHeader` * move `getHeader` to cpp * remove set-cookie check * move `setHeader` to cpp --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-14async-ify all node:fs functions (#5360)Gravatar Jarred Sumner 1-5/+8
* async all node:fs functions * draw the rest of the owl * LLVM & Clang 16 --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-14v8 date parser tests (#5332)Gravatar Dylan Conway 1-0/+462
* Create v8-date-parser.test.js * one more test * add permalinks and enable parser in bun --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-14fix(runtime): emit `node:net` connect error event vs throw (#5336)Gravatar dave caruso 2-5/+34
* fix(runtime): emit `node:net` connect error event vs throw * oops * finally * ok * we are good
2023-09-13fix(Bun.serve) fix buffering edge case (#5152)Gravatar Ciro Spaciari 2-0/+31
* fix buffering clean * fix resolveMaybeNeedsTrailingSlash and try to fix ci/cd error * fix resolveMaybeNeedsTrailingSlash and try to fix ci/cd error * oops --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-13fix(runtime): make most globals configurable/deletable, allow resuming the ↵Gravatar dave caruso 5-2/+69
console iterator (#5216) * Fix #5177 * Fix #5175 * make most globals deletable/overridable * not done * cool * a * done * fix test * oops * yippee
2023-09-13Fix bug with multiline string in CRLF terminated files (#4893) (#5318)Gravatar Mordy Tikotzky 1-0/+23
* Fix bug with multiline string in CRLF terminated files (#4893) * add test for #4893
2023-09-13test (#5244)Gravatar dave caruso 3-0/+28
2023-09-13fix(BunFile.slice) fix slice when length is greater than the size (#5186)Gravatar Ciro Spaciari 1-0/+10
* check the limits for file, when slicing * check eof * undo test
2023-09-13fix(node:dns): fix the crash. (#5200)Gravatar Ai Hoshino 1-1/+61
2023-09-13fix(console.log) fix printing long custom format (#5164)Gravatar Ciro Spaciari 3-1/+37
* avoid overflow * Update src/bun.js/bindings/exports.zig * add mongodb inspect test * bun db test --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-13feat(nodejs): implement `os.availableParallelism` (#5109)Gravatar WingLim 1-0/+4
* feat(nodejs): implement `os.availableParallelism` * chore: do not throw error as same as node * refactor: use `navigator.hardwareConcurrency`
2023-09-13fix(runtime): require cache should not include unevaluated ESM modules. (#5233)Gravatar dave caruso 4-1/+35
2023-09-13fix(node/fetch): Make data URL fetch consistent with node (#5126)Gravatar David Hewitt 1-0/+24
2023-09-13avoid inserting extraneous"accept-encoding" header (#5057)Gravatar iidebyo 1-0/+21
* add no extraneous accept-encoding header test * ensure fetch honors no decompress opt * fix format on test/js/node/http/node-http.test.ts
2023-09-13decode regex if needed (#5167)Gravatar Dylan Conway 1-0/+5
* decode regex if non-ascii * make it comptime * add test * use `bun.BabyList(u16)`
2023-09-12Update node-dns.test.jsGravatar Dylan Conway 1-1/+1
2023-09-12Fix bug with bun build --compile (#5102)Gravatar Jarred Sumner 1-0/+3
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-12fix up with `prettier` (#5092)Gravatar Alex Lam S.L 1-1/+1
2023-09-12fix(node/path): Prevent memory corruption in parse (#5083)Gravatar David Hewitt 1-0/+11
* Add failing test for issue #4954 * fix(node/path): Return results with toValueGC
2023-09-12Fix some bugs blocking Turborepo from using `bun run` (#5071)Gravatar Jarred Sumner 1-0/+58
* Clean up some error handling when loading `tsconfig.json` * [bun run] don't parse tsconfig.json for package.json scripts * Make this error message better * Bump * Don't print build errors twice * Handle quotes in error messages a little better * Add a couple tests --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-11add NODE_TLS_REJECT_UNAUTHORIZED (#4829)Gravatar Ciro Spaciari 2-0/+32
2023-09-11fix(path): Fix edge case in `path.relative` (#4811)Gravatar Ai Hoshino 1-0/+13
Close: #4789
2023-09-11Fix `Buffer.from` to handle double-byte hex encoding strings (#4933)Gravatar Ai Hoshino 1-0/+13
Close: #4919
2023-09-11fix(BunFile) .slice offset on macOS (#4991)Gravatar Ciro Spaciari 1-0/+9
* fix offset * simplify error
2023-09-11fix loading env from `.env.production` and friends (#4630)Gravatar Dylan Conway 1-1/+42
* reload conditional vars * test * change `get` and `put` methods * dont clone empty env variables
2023-09-11update testGravatar Dylan Conway 1-1/+1
2023-09-10Support named imports for json & toml files at runtime (#4783)Gravatar Jarred Sumner 5-0/+155
* Support named exports in json imports * Support named imports for `*.json` files * Remove stale comments * Don't export arrays as non-default * Add test for default exports * Don't break webpack --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-10Fixes #4588 (#4804)Gravatar Jarred Sumner 1-0/+7
* Fixes #4588 * typo * fixup --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-09fix: remove from bun-server.test.ts test case (#4709)Gravatar Chris Hutchinson 1-1/+1
2023-09-08Fix listen() using unix socket if argument is a valid port (#4620)Gravatar Ashcon Partovi 1-0/+18
* Fix listen() using unix socket if argument is a valid port Fixes #4582 * Add test
2023-09-07Fix a couple important bugs (#4560)bun-v1.0.0Gravatar Jarred Sumner 1-1/+7
2023-09-07revert (#4539)Gravatar dave caruso 3-15/+18
* Revert "remove native events from streams" This reverts commit e063a47a53744a2bf5b1c2dd433698c9e37b75d6. * finish revert * remove accidental submodule * dfghj