tests - reduce spam and work

This commit is contained in:
Benjamin Pasero 2022-04-06 19:34:41 +02:00
parent c6b42be3c6
commit 8e8b3026fc
No known key found for this signature in database
GPG Key ID: E6380CC4C8219E65
6 changed files with 28 additions and 6 deletions

View File

@ -1,3 +1,9 @@
{
"editor.minimap.enabled": false // see https://github.com/microsoft/vscode/issues/115747
"editor.minimap.enabled": false, // see https://github.com/microsoft/vscode/issues/115747
"workbench.editor.languageDetection": false,
"typescript.disableAutomaticTypeAcquisition": true,
"json.schemaDownload.enable": false,
"npm.fetchOnlinePackageInfo": false,
"npm.autoDetect": "off",
"workbench.localHistory.enabled": false
}

View File

@ -6,5 +6,10 @@
"**/files-exclude/**": true
},
"editor.minimap.enabled": false, // see https://github.com/microsoft/vscode/issues/115747
"workbench.editor.languageDetection": true
"workbench.editor.languageDetection": true,
"typescript.disableAutomaticTypeAcquisition": true,
"json.schemaDownload.enable": false,
"npm.fetchOnlinePackageInfo": false,
"npm.autoDetect": "off",
"workbench.localHistory.enabled": false
}

View File

@ -1,3 +1,9 @@
{
"editor.minimap.enabled": false // see https://github.com/microsoft/vscode/issues/115747
"editor.minimap.enabled": false, // see https://github.com/microsoft/vscode/issues/115747
"workbench.editor.languageDetection": false,
"typescript.disableAutomaticTypeAcquisition": true,
"json.schemaDownload.enable": false,
"npm.fetchOnlinePackageInfo": false,
"npm.autoDetect": "off",
"workbench.localHistory.enabled": false
}

View File

@ -100,7 +100,7 @@ export class NodeJSFileWatcherLibrary extends Disposable {
// Correct watch path as needed
if (request.path !== realPath) {
this.warn(`correcting a path to watch that seems to be a symbolic link or wrong casing (original: ${request.path}, real: ${realPath})`);
this.trace(`correcting a path to watch that seems to be a symbolic link or wrong casing (original: ${request.path}, real: ${realPath})`);
}
} catch (error) {
// ignore

View File

@ -486,7 +486,7 @@ export class ParcelWatcher extends Disposable implements IRecursiveWatcher {
realPathLength = realPath.length;
realPathDiffers = true;
this.warn(`correcting a path to watch that seems to be a symbolic link or wrong casing (original: ${request.path}, real: ${realPath})`);
this.trace(`correcting a path to watch that seems to be a symbolic link or wrong casing (original: ${request.path}, real: ${realPath})`);
}
} catch (error) {
// ignore

View File

@ -27,7 +27,12 @@ function createWorkspaceFile(workspacePath: string): string {
settings: {
'workbench.startupEditor': 'none',
'workbench.enableExperiments': false,
"typescript.disableAutomaticTypeAcquisition": true
'typescript.disableAutomaticTypeAcquisition': true,
'json.schemaDownload.enable': false,
'npm.fetchOnlinePackageInfo': false,
'npm.autoDetect': 'off',
'workbench.editor.languageDetection': false,
"workbench.localHistory.enabled": false
}
};