Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #!/usr/bin/env node /** * Script to add test:coverage scripts to all packages */ import { readFileSync, writeFileSync, readdirSync, statSync } from 'fs'; import { join } from 'path'; // Find all package.json files in packages subdirectories const packagesDir = 'packages'; const packageDirs = readdirSync(packagesDir).filter(dir => { const dirPath = join(packagesDir, dir); return statSync(dirPath).isDirectory(); }); const packageJsonPaths = packageDirs.map(dir => join(packagesDir, dir, 'package.json')); for (const packageJsonPath of packageJsonPaths) { try { const content = readFileSync(packageJsonPath, 'utf-8'); const packageJson = JSON.parse(content); if (packageJson.scripts && packageJson.scripts.test) { // Add coverage script if it doesn't exist if (!packageJson.scripts['test:coverage']) { console.log(`Adding test:coverage to ${packageJsonPath}`); packageJson.scripts['test:coverage'] = 'mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info test/*.test.js'; writeFileSync(packageJsonPath, `${JSON.stringify(packageJson, null, 2)}\n`); } else { console.log(`test:coverage already exists in ${packageJsonPath}`); } } else { console.log(`No test script found in ${packageJsonPath}`); } } catch (error) { console.error(`Error processing ${packageJsonPath}:`, error.message); } } console.log('Done adding coverage scripts to packages'); |