Skip to content

Commit

Permalink
ci: forbids only in test files (#1601)
Browse files Browse the repository at this point in the history
  • Loading branch information
mShan0 committed Feb 9, 2024
1 parent 1c88d76 commit cf3dab1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@
"scripts": {
"docs": "typedoc",
"lint": "eslint src test --ext .js,.ts && tsc",
"test": "mocha test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "mocha test/integration/",
"test-all": "mocha test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"test": "mocha --forbid-only test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "mocha --forbid-only test/integration/",
"test-all": "mocha --forbid-only test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"build": "rimraf lib && babel src --out-dir lib --extensions .js,.ts",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
Expand Down

0 comments on commit cf3dab1

Please sign in to comment.