Skip to content

Commit

Permalink
ci: forbids only in test files (tediousjs#1601)
Browse files Browse the repository at this point in the history
(cherry picked from commit cf3dab1)
  • Loading branch information
mShan0 authored and KAMAELUA committed Apr 29, 2024
1 parent 4580650 commit 571ea42
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 @@ -90,9 +90,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 && tsc && copyfiles -u 2 temp/src/*.d.ts lib && rimraf temp",
"semantic-release": "semantic-release"
Expand Down

0 comments on commit 571ea42

Please sign in to comment.