formatting

This commit is contained in:
Phorcys 2026-02-24 15:12:43 +00:00
parent c7890ebae4
commit 889cfd75d7
No known key found for this signature in database
3 changed files with 2 additions and 6 deletions

View File

@ -57,7 +57,6 @@ variable "mcp" {
}
data "coder_workspace" "me" {}
data "coder_workspace_owner" "me" {}
module "vscode-desktop-core" {

View File

@ -105,10 +105,7 @@ describe("cursor", async () => {
}
expect(resp.exitCode).toBe(0);
const content = await readFileContainer(
id,
"/root/.cursor/mcp.json",
);
const content = await readFileContainer(id, "/root/.cursor/mcp.json");
expect(content).toBe(mcp);
} finally {
await removeContainer(id);

View File

@ -52,7 +52,7 @@ variable "display_name" {
variable "mcp" {
type = string
description = "JSON-encoded string to configure MCP servers for Windsurf. When set, writes ~/.codeium/windsurf/mcp_config.json."
description = "JSON-encoded string to configure MCP servers for Windsurf. When set, writes $HOME/.codeium/windsurf/mcp_config.json."
default = null
}