Skip to content

Commit b9e7412

Browse files
committed
Remove verbose logging
1 parent 263f3cb commit b9e7412

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

test/runIntegrationTests.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,10 @@ export async function main() {
2424

2525
console.log('Display: ' + process.env.DISPLAY);
2626

27-
const result = cp.spawnSync(
28-
cli,
29-
[...args, '--verbose', 'true', '--install-extension', 'ms-dotnettools.vscode-dotnet-runtime'],
30-
{
31-
encoding: 'utf-8',
32-
stdio: 'inherit',
33-
}
34-
);
27+
const result = cp.spawnSync(cli, [...args, '--install-extension', 'ms-dotnettools.vscode-dotnet-runtime'], {
28+
encoding: 'utf-8',
29+
stdio: 'inherit',
30+
});
3531
if (result.error) {
3632
throw new Error(`Failed to install the runtime extension: ${result.error}`);
3733
}
@@ -79,7 +75,7 @@ export async function main() {
7975
extensionDevelopmentPath,
8076
extensionTestsPath,
8177
// Launch with info logging as anything else is way too verbose and will hide test results.
82-
launchArgs: [workspacePath, '-n', '--log', 'verbose', '--verbose', 'true'],
78+
launchArgs: [workspacePath, '-n', '--log', 'info'],
8379
extensionTestsEnv: process.env,
8480
});
8581

0 commit comments

Comments
 (0)