Skip to content

Commit 1a1addb

Browse files
committed
Swith testing to tape
This is primarily to support a future addition of airtap which relies on tape.
1 parent 56b4ee0 commit 1a1addb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.dependabot/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ update_configs:
55
update_schedule: "daily"
66
ignored_updates:
77
- match:
8-
dependency_name: "tap"
8+
dependency_name: "tape"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"benchmark": "cd benchmarks && npm install && npm run all",
8-
"test": "standard && tap test.js"
8+
"test": "standard && tape test.js"
99
},
1010
"repository": {
1111
"type": "git",
@@ -26,6 +26,6 @@
2626
"homepage": "https://github.com/fastify/secure-json-parse#readme",
2727
"devDependencies": {
2828
"standard": "^16.0.0",
29-
"tap": "^12.7.0"
29+
"tape": "^5.1.1"
3030
}
3131
}

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const test = require('tap').test
3+
const test = require('tape').test
44
const j = require('./index')
55

66
test('parse', t => {

0 commit comments

Comments
 (0)