We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b1efc commit e2a989dCopy full SHA for e2a989d
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "junit-to-ctrf",
3
- "version": "0.0.2",
+ "version": "0.0.3",
4
"description": "",
5
"main": "index.js",
6
"scripts": {
src/convert.ts
@@ -129,7 +129,7 @@ export async function convertJUnitToCTRF(
129
const ctrfReport = createCTRFReport(testCases, toolName, envPropsObj);
130
131
const defaultOutputPath = path.join('ctrf', 'ctrf-report.json');
132
- const finalOutputPath = outputPath || defaultOutputPath;
+ const finalOutputPath = path.resolve(outputPath || defaultOutputPath);
133
134
const outputDir = path.dirname(finalOutputPath);
135
await fs.ensureDir(outputDir);
0 commit comments