Skip to content

Commit f190b73

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

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
@@ -4,7 +4,7 @@
44
"description": "JSON parse with prototype poisoning protection",
55
"main": "index.js",
66
"scripts": {
7-
"test": "standard && tap test.js"
7+
"test": "standard && tape test.js"
88
},
99
"repository": {
1010
"type": "git",
@@ -25,6 +25,6 @@
2525
"homepage": "https://github.com/fastify/secure-json-parse#readme",
2626
"devDependencies": {
2727
"standard": "^16.0.0",
28-
"tap": "^12.7.0"
28+
"tape": "^5.1.1"
2929
}
3030
}

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)