All files / scripts fix-coverage-scripts.js

0% Statements 0/38
0% Branches 0/1
0% Functions 0/1
0% Lines 0/38

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                                                                           
#!/usr/bin/env node
/**
 * Script to fix test:coverage scripts in 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:coverage']) {
      console.log(`Fixing test:coverage in ${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(`No test:coverage script in ${packageJsonPath}`);
    }
  } catch (error) {
    console.error(`Error processing ${packageJsonPath}:`, error.message);
  }
}

console.log('Done fixing coverage scripts in packages');