magodo
magodo
Currently, the test binary being run is directly instantiated as a WASM and run in the main thread. Whilst, if I have a Go WASM aims to be run in...
That said, I only care about the test coverage of the Go code that is running inside the web worker. Is there an example showing how I can achieve that...
I realized the main ask is to have a test framework for the integration test between the main thread and the web worker, which seems to beyond the scope of...
Yes, I'm loading a wasm file from within the worker, and then it will communicate with the outside via `postMessage` and `onMessage` calls, from Go. The outside is also a...
Indeed! The typical test flow of Go is like it compile one test binary and run it (no matter how many test case it includes). Whilst, in this scenario we...
Feel free to close my pr and apply the changes to the blog&code accordingly :)
@lawrencegripper [`port`](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/container_group#port) is required within the `ports`, while `ports` itself is optional to support [`ip_address_type = None`](https://github.com/hashicorp/terraform-provider-azurerm/pull/14460). So the current schema definition LGTM.
@lawrencegripper With the current provider version (v3.93.0), using your above config will return: > │ Container Group Name: "acctestcontainergroup-220719133700697922"): performing ContainerGroupsCreateOrUpdate: containerinstance.ContainerInstanceClient#ContainerGroupsCreateOrUpdate: Failure sending request: StatusCode=0 -- Original Error: Code="MissingIpAddressPorts"...
@Dilergore For private ip address type, the port is still required. While for `None`, the ports are not set to the API at all.
@unkinected Sorry for running into this.. From the error message: > Specified workspace "name" conflicts with TF_WORKSPACE environment variable. Looks like there is an existing env var `TF_WORKSPACE` in your...