Skip to content

Commit edcad18

Browse files
committed
fix(ci): enable codelenses for integ tests
ref 71c79b9
1 parent 71c79b9 commit edcad18

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/integrationTest/integrationTestsUtilities.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ export function getTestWorkspaceFolder(): string {
2828

2929
export async function configureAwsToolkitExtension(): Promise<void> {
3030
const configAws = vscode.workspace.getConfiguration('aws')
31-
// This changes how long the toolkit will wait for SAM CLI output before ending a session
31+
// How long the Toolkit will wait for SAM CLI output before ending a session.
3232
await configAws.update('samcli.lambdaTimeout', LAMBDA_SESSION_TIMEOUT, false)
33+
// Enable codelenses.
34+
await configAws.update('samcli.enableCodeLenses', true, false)
3335
}
3436

3537
export async function configurePythonExtension(): Promise<void> {

0 commit comments

Comments
 (0)