We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e02fa commit 5e82026Copy full SHA for 5e82026
packages/amazonq/test/unit/codewhisperer/service/securityScanHandler.test.ts
@@ -66,7 +66,10 @@ const buildMockListCodeScanFindingsResponse = (
66
})
67
68
function getWorkspaceFolder(): string {
69
- return vscode.workspace.workspaceFolders?.[0]?.uri.fsPath ?? path.join(__dirname, '../../../../../../core/src/testFixtures/workspaceFolder')
+ return (
70
+ vscode.workspace.workspaceFolders?.[0]?.uri.fsPath ??
71
+ path.join(__dirname, '../../../../../../core/src/testFixtures/workspaceFolder')
72
+ )
73
}
74
75
describe('securityScanHandler', function () {
0 commit comments