octobertest
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -20,5 +20,5 @@ var Test = require('./test'), | ||
var destFile = program.args[1], | ||
destFormat = path.extname(destFile).slice(1), | ||
destFormat = program.out || path.extname(destFile).slice(1), | ||
srcFile = program.args[0], | ||
srcFormat = path.extname(srcFile).slice(1), | ||
srcFormat = program.in || path.extname(srcFile).slice(1), | ||
srcString = fs.readFileSync(srcFile), | ||
@@ -25,0 +25,0 @@ test = Test.parse(srcString, srcFormat); |
@@ -5,3 +5,3 @@ { | ||
"description": "Convert between different test result formats", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"homepage": "https://github.com/uxebu/octobertest", | ||
@@ -8,0 +8,0 @@ "repository": { |
5595
20