We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca49b5 commit 78e47c7Copy full SHA for 78e47c7
cli/vscodeipc/vscodeipc_test.go
@@ -40,6 +40,9 @@ func TestVSCodeIPC(t *testing.T) {
40
id := uuid.New()
41
derpMap := tailnettest.RunDERPAndSTUN(t)
42
coordinator := tailnet.NewCoordinator()
43
+ t.Cleanup(func() {
44
+ _ = coordinator.Close()
45
+ })
46
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
47
switch r.URL.Path {
48
case fmt.Sprintf("/api/v2/workspaceagents/%s/connection", id):
0 commit comments