Skip to content

Commit

Permalink
chore: removing unrequired output
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed May 6, 2024
1 parent 178beb6 commit a126f14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ jobs:
uses: deblockt/[email protected]
with:
access-token: ${{ secrets.GITHUB_TOKEN }}
path: "test/reports/cucumber-report.ndjson"
path: "test/reports/cucumber-report.json"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"test:integration": "npm run test:integration:init && cucumber-js --config ./test/config/cucumber.mjs",
"test": "npm run test:unit && npm run test:integration",
"coverage": "c8 mocha && c8 report --reporter=html && c8 report --reporter=json-summary",
"lcov": "c8 mocha && c8 report --reporter=lcov && c8 report --reporter=json-summary",
"lcov": "c8 mocha && c8 report --reporter=lcov",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix",
"format": "prettier --log-level warn --write \"**/*.{js,json,jsx,md,ts,tsx,html}\"",
Expand Down
2 changes: 1 addition & 1 deletion test/config/cucumber.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
parallel: 0,
format: ["message:test/reports/cucumber-report.ndjson"],
format: ["json:test/reports/cucumber-report.json"],
paths: ["test/features"],
forceExit: true,
};

0 comments on commit a126f14

Please sign in to comment.