Max Rozen
Max Rozen
Prior to this change, `wrangler.unstable_dev()` would only support running one instance of wrangler at a time, as Ink only lets you render one instance of React. This resulted in test...
- We should prove `unstable_dev()`'s ability for integration testing by rewriting our local-mode tests to use it instead
🐛 BUG: API/unstable_dev race condition when running several `unstable_dev` commands at the same time
### What version of `Wrangler` are you using? wrangler@beta ### What operating system are you using? Mac ### Describe the Bug In CI, running tests with unstable_dev fails sometimes. Investigating...
This issue will track the issues required to promote `api/unstable_dev()` to `api/dev` - The API needs to export its types for consumers, tracked by: - https://github.com/cloudflare/wrangler2/issues/1387 - We need to...
At the moment, `unstable_dev` takes an object of options, with the following type: ```ts interface DevOptions { env?: string; ip?: string; port?: number; localProtocol?: "http" | "https"; assets?: string; site?:...
### Which Cloudflare product(s) does this pertain to? Workers ### Subject Matter Wrangler ### Content Location Probably in here: https://developers.cloudflare.com/workers/wrangler/api/ ### Additional information TODO for @rozenmd
### Describe the solution Just a test that index.ts/index.js returns "Hello World!" as expected This should probably be an option as part of the init flow, you actually have to...
With `unstable_dev`, we deleted dotenv.test.ts. We should bring it back in a more useful form: ```ts import { spawnWranglerDev } from "./helpers"; it("should use the environment variable from the .env...
### What version of `Wrangler` are you using? 2.1.4 ### What operating system are you using? Mac ### Describe the Bug We apparently have six environment variables - let's document...