Skip to content

Commit efaa66b

Browse files
committed
fix: removes tap-arc which has been hiding false positives
1 parent 6fda49a commit efaa66b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ scratch/
99
test/mock/*/src/*/*/vendor/
1010
test/mock/tmp/
1111
yarn.lock
12+
.kiro

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@
1111
"main": "src/index",
1212
"types": "types/index.d.ts",
1313
"scripts": {
14-
"test:one": "cross-env tape 'test/unit/src/http/csrf/*-test.js' | tap-arc",
1514
"lint": "eslint --fix .",
1615
"test": "npm run lint && npm run test:integration && npm run coverage && npm run test:types",
1716
"test:nolint": "npm run test:integration && npm run coverage && npm run test:types",
18-
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc",
19-
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-arc",
20-
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
17+
"test:unit": "cross-env tape 'test/unit/**/*-test.js'",
18+
"test:integration": "cross-env tape 'test/integration/**/*-test.js'",
2119
"test:types": "tsd --files types/*.test-d.ts",
20+
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
2221
"rc": "npm version prerelease --preid RC"
2322
},
2423
"engines": {
@@ -57,7 +56,6 @@
5756
"nyc": "~17.1.0",
5857
"proxyquire": "~2.1.3",
5958
"sinon": "^21.0.0",
60-
"tap-arc": "^1.3.2",
6159
"tape": "^5.9.0",
6260
"tiny-json-http": "^7.5.1",
6361
"tsd": "^0.33.0"

0 commit comments

Comments
 (0)