We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc94ac9 commit 506e5e8Copy full SHA for 506e5e8
test/e2e/models/CodeServer.ts
@@ -52,11 +52,11 @@ export class CodeServer {
52
*/
53
private async createWorkspace(): Promise<string> {
54
const dir = await tmpdir(workspaceDir)
55
- await fs.mkdir(path.join(dir, ".vscode"))
+ await fs.mkdir(path.join(dir, "User"))
56
await fs.writeFile(
57
- path.join(dir, ".vscode/settings.json"),
+ path.join(dir, "User/settings.json"),
58
JSON.stringify({
59
- "workbench.startupEditor": "none",
+ "workbench.startupEditor": "none",
60
}),
61
"utf8",
62
)
0 commit comments