(logName: string)
| 137 | } |
| 138 | |
| 139 | export function getJUnitFileName(logName: string) { |
| 140 | return `${logName.replaceAll(' ', '_')}_junit.xml`; |
| 141 | } |
| 142 | |
| 143 | export async function runJestTest(project: string) { |
| 144 | process.env.JEST_JUNIT_OUTPUT_NAME = getJUnitFileName(project); |
no outgoing calls
no test coverage detected