Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(vscode): increase logging scope of vscode test suite #1784

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions packages/vscode/src/__test__/runTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ function test({ PRISMA_USE_LOCAL_LS, version }: { PRISMA_USE_LOCAL_LS: string; v
launchArgs: [
// This disables all extensions except the one being testing
'--disable-extensions',
// ? This may or may not be necessary?
// ? https://code.visualstudio.com/docs/editor/settings-sync
'--sync off',
// * Print verbose output (implies --wait).
'--verbose',
// * Log level to use. Default is 'info'.
// * Allowed values are 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'.
// * You can also configure the log level of an extension by passing extension id and log level
// * in the following format: '${publisher}.${name}:${logLevel}'.
// * For example: 'vscode.csharp:trace'. Can receive one or more such entries.
// ? It says multiple can be passed, unsure if this means
// ? multiple for one extension. So lets start like this.
'--log critical',
],
extensionTestsEnv: {
PRISMA_USE_LOCAL_LS,
Expand Down
Loading