Ashcon Partovi
Ashcon Partovi
@robobun ```js console.log(new URL("http://example.com/test")); ```
This is probably related: #2028
The team talked about this and agreed to remove this by default, but log it when `--logLevel=verbose`. We'll make this change soon.
This was changed as of Bun v1.0.7, and Bun no longer logs ".env" by default.
There might be something else involved, but here's my repro: ```ts import { afterAll, beforeAll, describe, test, expect } from "bun:test"; import { spawnSync, which } from "bun"; let containerName...
Wrapped both `beforeAll` and `afterAll` in try-catch. `beforeAll` doesn't throw. When I add a `console.log` at the start/end of the `afterAll`, neither run.
This was fixed.
Duplicate of #4988
Duplicate of #4765
Hi @Didas-git, thanks for working on this and writing up your thoughts! > Declaration merging I think this is a good idea. Right now there is a lot of weirdness/brokenness...