Skip to content

Commit

Permalink
Fix test reporter on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Oct 12, 2023
1 parent b901da0 commit c06578f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"ts-check": "tsc --noEmit",
"ts-emit-types": "tsc --emitDeclarationOnly",
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "mocha lib-test/*.js --reporter ${REPORTER:-progress}",
"test:cjs": "mocha lib-test/*.cjs --reporter ${REPORTER:-progress}",
"test:esm": "mocha lib-test/*.js --reporter progress",
"test:cjs": "mocha lib-test/*.cjs --reporter progress",
"build": "npm run build:transpile",
"build:transpile": "node scripts/transpile.cjs",
"coverage": "c8 --exclude lib-test --reporter=lcovonly npm run test:esm",
Expand Down

0 comments on commit c06578f

Please sign in to comment.