Skip to content

Commit

Permalink
sync with main
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuleiro committed May 13, 2024
2 parents 06513ea + 8613ab0 commit 34a4f07
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node-version: [14.x, 16.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -31,4 +31,4 @@ jobs:
- run: npm install
- run: npm run test
env:
CI: true
CI: true
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm test
Expand Down
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"files.exclude": {
"**/coverage": true,
"**/node_modules": true
}
},
"cSpell.words": [
"testbeats"
]
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
<<<<<<< HEAD
"name": "seesaw-test-results-parser",
=======
"name": "test-results-parser",
>>>>>>> main
"version": "0.1.15",
"description": "Parse test results from JUnit, TestNG, xUnit, cucumber and many more",
"main": "src/index.js",
Expand All @@ -23,7 +27,8 @@
"automation",
"mocha",
"cucumber",
"nUnit"
"nUnit",
"testbeats"
],
"author": "Anudeep <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function getParser(type) {
case 'cucumber':
return cucumber;
default:
throw `UnSupported Result Type - ${options.type}`;
throw `UnSupported Result Type - ${type}`;
}
}

Expand Down

0 comments on commit 34a4f07

Please sign in to comment.