Skip to content

Commit 26797ae

Browse files
SamSalvaticoadrai
andauthored
Test: from tap to node runner (#247)
* test: moved alb.test.js * test: updated basic.test.js * test: updated multipart.test.js * chore: linted * test: removed tap * test: revertedt test.js * fix linting * chore: linted * test: run tests using fast-glob * chore: rollbacked eslint fix --------- Signed-off-by: SamSalvatico <[email protected]> Co-authored-by: Adriano Raiano <[email protected]>
1 parent 9dcc6f3 commit 26797ae

File tree

5 files changed

+1085
-973
lines changed

5 files changed

+1085
-973
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"scripts": {
3434
"lint": "eslint .",
3535
"test": "npm run test:unit && npm run test:typescript",
36-
"test:unit": "tap -J -R specy --no-coverage test/*test.js",
36+
"test:unit": "node scripts/unit.js",
3737
"test:typescript": "tsd",
3838
"performance": "npm run lint && node performanceTest/test",
3939
"preversion": "npm run test && git push",
@@ -55,9 +55,9 @@
5555
"eslint-plugin-n": "^17.15.1",
5656
"eslint-plugin-promise": "^7.2.1",
5757
"eslint-plugin-standard": "^5.0.0",
58+
"fast-glob": "^3.3.3",
5859
"fastify": "^5.2.1",
5960
"serverless-http": "^3.2.0",
60-
"tap": "^16.3.9",
6161
"tsd": "^0.31.2"
6262
},
6363
"publishConfig": {

scripts/unit.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
'use strict'
2+
3+
const { globSync } = require('fast-glob')
4+
const { exec } = require('node:child_process')
5+
6+
// Expand patterns
7+
const testFiles = [
8+
...globSync('test/*test.js')
9+
]
10+
11+
const args = ['node', '--test', ...testFiles]
12+
13+
const child = exec(args.join(' '), {
14+
shell: true
15+
})
16+
17+
child.stdout.pipe(process.stdout)
18+
child.stderr.pipe(process.stderr)
19+
child.once('close', process.exit)

0 commit comments

Comments
 (0)