Skip to content

Commit 89cc5a9

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 89cc5a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/models/CodeServer.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ 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({
5959
"workbench.startupEditor": "none",
6060
}),

0 commit comments

Comments
 (0)