mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
#!/usr/bin/env tsx
|
|
|
|
import { runTestAnalysis } from './report'
|
|
|
|
runTestAnalysis(process.argv[2]).catch(error => {
|
|
console.error('Failed to generate test analysis report:', error)
|
|
process.exit(1)
|
|
})
|