Ashcon Partovi
Ashcon Partovi
### What is the problem this feature will solve? Node.js added support for `node --watch` in v18. `--watch` is common among other developer tools, so we should support it as...
```js describe("a", () => { throw new Error(); }); describe("b", () => { // Does not run }); ```
When running: ``` bun wiptest example.test.ts -- 1234 ``` You would expect the following to be true: ```js console.log(process.argv[2]); // "1234" ``` But instead, you get: ```js console.log(process.argv[2]); // undefined...
[`AsyncLocalStorage`](https://nodejs.org/api/async_context.html#class-asynclocalstorage) is a Node.js API that allows you to store and access values from an asynchronous context. It's commonly used in observability libraries like Sentry that need to track request...
`bun test`
## Jest ### [`describe()`](https://jestjs.io/docs/api#describename-fn) - [x] [describe(name, fn)](https://jestjs.io/docs/api#describename-fn) - [x] [describe.each(table)(name, fn, timeout)](https://jestjs.io/docs/api#describeeachtablename-fn-timeout) - [x] [describe.only(name, fn)](https://jestjs.io/docs/api#describeonlyname-fn) - [ ] [describe.only.each(table)(name, fn)](https://jestjs.io/docs/api#describeonlyeachtablename-fn) - [x] [describe.skip(name, fn)](https://jestjs.io/docs/api#describeskipname-fn) - [ ] [describe.skip.each(table)(name,...
This would be an optional parameter to `fetch()` that would allow you to define a proxy URL to route the request. This is similar to the [`http_proxy` and `https_proxy`](https://about.gitlab.com/blog/2021/01/27/we-need-to-talk-no-proxy/) environment...
```js 14 | const exitCode = await Bun.spawn({ cmd: ["blah"] }); 15 | expect(exitCode).toBe(0); ^ error: Expected: 0 Received: SIGSEGV ```
Developers sometimes need to configure a proxy when using Bun. * #49 * #565 While Node.js has decided not to support this, these variables have been adopted by `curl`, `wget`,...
There is a bug with `node:stream` that prevents the [`decompress`](https://www.npmjs.com/package/decompress) package from working. @robobun ```js import decompress from "decompress"; const response = await fetch("https://github.com/oven-sh/bun/releases/download/bun-v0.4.0/bun-linux-aarch64.zip"); const buffer = await response.arrayBuffer(); const...