Skip to content

Commit 506e5e8

Browse files
committed
Use user settings to disable welcome page
The workspace setting seems to be recognized but if so it is having no effect.
1 parent fc94ac9 commit 506e5e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/models/CodeServer.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ export class CodeServer {
5252
*/
5353
private async createWorkspace(): Promise<string> {
5454
const dir = await tmpdir(workspaceDir)
55-
await fs.mkdir(path.join(dir, ".vscode"))
55+
await fs.mkdir(path.join(dir, "User"))
5656
await fs.writeFile(
57-
path.join(dir, ".vscode/settings.json"),
57+
path.join(dir, "User/settings.json"),
5858
JSON.stringify({
59-
"workbench.startupEditor": "none",
59+
"workbench.startupEditor": "none",
6060
}),
6161
"utf8",
6262
)

0 commit comments

Comments
 (0)