Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/amazonq/test/e2e/amazonq/review.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ describe('Amazon Q Code Review', function () {
await validateInitialChatMessage()
})

it('/review file gives correct critical and high security issues', async () => {
it.skip('/review file gives correct critical and high security issues', async () => {
const document = await vscode.workspace.openTextDocument(filePath)
await vscode.window.showTextDocument(document)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,10 @@ export async function createScanJob(
getLogger().info(
`Amazon Q Code Review requestId: ${resp.$response.requestId} and Amazon Q Code Review jobId: ${resp.jobId}`
)
// eslint-disable-next-line aws-toolkits/no-console-log
console.log(
`Amazon Q Code Review requestId: ${resp.$response.requestId} and Amazon Q Code Review jobId: ${resp.jobId}`
)
TelemetryHelper.instance.sendCodeScanEvent(languageId, resp.$response.requestId)
return resp
}
Expand Down
Loading