test(decorate-with): from Tap to test (#6474)

This commit is contained in:
Gabriel Gunullu
2022-10-24 17:46:44 +02:00
committed by GitHub
parent fe323b8fe5
commit 876211879f
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
'use strict'
const assert = require('assert')
const { describe, it } = require('tap').mocha
const { describe, it } = require('test')
const { decorateClass, decorateWith, decorateMethodsWith, perInstance } = require('./')

View File

@@ -26,9 +26,9 @@
},
"scripts": {
"postversion": "npm publish --access public",
"test": "tap"
"test": "node--test"
},
"devDependencies": {
"tap": "^16.0.1"
"test": "^3.2.1"
}
}