We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f5611b commit 6409e09Copy full SHA for 6409e09
extensions/ql-vscode/src/vscode-tests/cli-integration/sourcemap.test.ts
@@ -55,8 +55,7 @@ describe('SourceMap', function() {
55
const tempDir = path.join(tmpDir.name, 'log-summary');
56
await fs.ensureDir(tempDir);
57
const result: Record<string, string> = {};
58
- for (const key in files) {
59
- const srcPath = files[key];
+ for (const [key, srcPath] of Object.entries(files)) {
60
const destPath = path.join(tempDir, path.basename(srcPath));
61
await fs.copy(srcPath, destPath);
62
result[key] = destPath;
0 commit comments