UNPKG

scai

Version:

> AI-powered CLI tools for smart commit messages, auto generated comments, and readme files — all powered by local models.

12 lines (11 loc) 299 B
import { execSync } from 'child_process'; export function runJestTest(testFile) { try { execSync(`npx jest ${testFile} --silent`, { stdio: 'inherit' }); return true; } catch (err) { console.error(`❌ Tests failed for ${testFile}`); return false; } }