disable welcome editor in smoke tests (fix #124674)

This commit is contained in:
Benjamin Pasero 2021-05-26 14:22:08 +02:00
parent 0688745e82
commit 4cda850edf

View file

@ -22,7 +22,10 @@ async function createWorkspaceFile(workspacePath: string): Promise<string> {
{ path: toUri(path.join(workspacePath, 'public')) },
{ path: toUri(path.join(workspacePath, 'routes')) },
{ path: toUri(path.join(workspacePath, 'views')) }
]
],
settings: {
'workbench.startupEditor': 'none'
}
};
fs.writeFileSync(workspaceFilePath, JSON.stringify(workspace, null, '\t'));