test(audit-core,predicates,otp,xo-server): move from tap to test

Support of Mocha syntax is much easier than in latest versions of tap
This commit is contained in:
Julien Fontanet
2024-02-01 15:43:06 +01:00
parent 2262ce8814
commit e7a97fd175
14 changed files with 29 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
'use strict'
const assert = require('assert/strict')
const { describe, it } = require('tap').mocha
const { describe, it } = require('test')
const { every, not, some } = require('./')

View File

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