@git.zone/tstest 3.1.8 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist_ts/00_commitinfo_data.js +3 -3
  2. package/dist_ts/tstest.classes.migration.js +4 -4
  3. package/dist_ts/tstest.classes.runtime.bun.js +5 -5
  4. package/dist_ts/tstest.classes.runtime.chromium.js +12 -10
  5. package/dist_ts/tstest.classes.runtime.deno.d.ts +4 -0
  6. package/dist_ts/tstest.classes.runtime.deno.js +22 -27
  7. package/dist_ts/tstest.classes.runtime.docker.js +2 -2
  8. package/dist_ts/tstest.classes.runtime.node.js +5 -5
  9. package/dist_ts/tstest.classes.tap.parser.js +6 -7
  10. package/dist_ts/tstest.classes.testdirectory.d.ts +1 -1
  11. package/dist_ts/tstest.classes.testdirectory.js +11 -12
  12. package/dist_ts/tstest.classes.testfile.directives.d.ts +38 -0
  13. package/dist_ts/tstest.classes.testfile.directives.js +191 -0
  14. package/dist_ts/tstest.classes.tstest.js +48 -33
  15. package/dist_ts/tstest.plugins.d.ts +6 -3
  16. package/dist_ts/tstest.plugins.js +7 -4
  17. package/dist_ts_tapbundle_serverside/classes.tapnodetools.d.ts +30 -0
  18. package/dist_ts_tapbundle_serverside/classes.tapnodetools.js +100 -3
  19. package/dist_ts_tapbundle_serverside/classes.testfileprovider.js +3 -3
  20. package/dist_ts_tapbundle_serverside/plugins.d.ts +4 -1
  21. package/dist_ts_tapbundle_serverside/plugins.js +5 -2
  22. package/npmextra.json +1 -1
  23. package/package.json +17 -16
  24. package/readme.hints.md +1 -1
  25. package/readme.md +329 -860
  26. package/ts/00_commitinfo_data.ts +2 -2
  27. package/ts/tstest.classes.migration.ts +3 -6
  28. package/ts/tstest.classes.runtime.bun.ts +4 -4
  29. package/ts/tstest.classes.runtime.chromium.ts +8 -12
  30. package/ts/tstest.classes.runtime.deno.ts +22 -26
  31. package/ts/tstest.classes.runtime.docker.ts +1 -1
  32. package/ts/tstest.classes.runtime.node.ts +4 -4
  33. package/ts/tstest.classes.tap.parser.ts +5 -7
  34. package/ts/tstest.classes.testdirectory.ts +19 -20
  35. package/ts/tstest.classes.testfile.directives.ts +226 -0
  36. package/ts/tstest.classes.tstest.ts +60 -43
  37. package/ts/tstest.plugins.ts +8 -3
package/npmextra.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "githost": "code.foss.global",
6
6
  "gitscope": "git.zone",
7
7
  "gitrepo": "tstest",
8
- "description": "a test utility to run tests that match test/**/*.ts",
8
+ "description": "A powerful, modern test runner for TypeScript with multi-runtime support (Node.js, Deno, Bun, Chromium) and a batteries-included test framework.",
9
9
  "npmPackagename": "@git.zone/tstest",
10
10
  "license": "MIT"
11
11
  },
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@git.zone/tstest",
3
- "version": "3.1.8",
3
+ "version": "3.3.0",
4
4
  "private": false,
5
- "description": "a test utility to run tests that match test/**/*.ts",
5
+ "description": "A powerful, modern test runner for TypeScript with multi-runtime support (Node.js, Deno, Bun, Chromium) and a batteries-included test framework.",
6
6
  "exports": {
7
7
  ".": "./dist_ts/index.js",
8
8
  "./tapbundle": "./dist_ts_tapbundle/index.js",
@@ -25,35 +25,36 @@
25
25
  "buildDocs": "tsdoc"
26
26
  },
27
27
  "devDependencies": {
28
- "@git.zone/tsbuild": "^3.1.0",
29
- "@types/node": "^22.15.21"
28
+ "@git.zone/tsbuild": "^4.3.0",
29
+ "@types/node": "^25.3.5"
30
30
  },
31
31
  "dependencies": {
32
- "@api.global/typedserver": "^3.0.80",
33
- "@git.zone/tsbundle": "^2.5.2",
34
- "@git.zone/tsrun": "^2.0.0",
32
+ "@api.global/typedserver": "^8.4.2",
33
+ "@git.zone/tsbundle": "^2.9.1",
34
+ "@git.zone/tsrun": "^2.0.1",
35
35
  "@push.rocks/consolecolor": "^2.0.3",
36
36
  "@push.rocks/qenv": "^6.1.3",
37
37
  "@push.rocks/smartbrowser": "^2.0.8",
38
- "@push.rocks/smartchok": "^1.1.1",
39
38
  "@push.rocks/smartcrypto": "^2.0.4",
40
39
  "@push.rocks/smartdelay": "^3.0.5",
41
40
  "@push.rocks/smartenv": "^6.0.0",
42
41
  "@push.rocks/smartexpect": "^2.5.0",
43
- "@push.rocks/smartfile": "^11.2.7",
44
- "@push.rocks/smartjson": "^5.2.0",
45
- "@push.rocks/smartlog": "^3.1.10",
46
- "@push.rocks/smartmongo": "^2.0.14",
42
+ "@push.rocks/smartfile": "^13.1.2",
43
+ "@push.rocks/smartfs": "^1.4.0",
44
+ "@push.rocks/smartjson": "^6.0.0",
45
+ "@push.rocks/smartlog": "^3.2.1",
46
+ "@push.rocks/smartmongo": "^5.1.0",
47
47
  "@push.rocks/smartnetwork": "^4.4.0",
48
48
  "@push.rocks/smartpath": "^6.0.0",
49
49
  "@push.rocks/smartpromise": "^4.2.3",
50
50
  "@push.rocks/smartrequest": "^5.0.1",
51
- "@push.rocks/smarts3": "^3.0.0",
52
- "@push.rocks/smartshell": "^3.3.0",
53
- "@push.rocks/smarttime": "^4.1.1",
51
+ "@push.rocks/smarts3": "^5.3.0",
52
+ "@push.rocks/smartshell": "^3.3.7",
53
+ "@push.rocks/smarttime": "^4.2.3",
54
+ "@push.rocks/smartwatch": "^6.3.0",
54
55
  "@types/ws": "^8.18.1",
55
56
  "figures": "^6.1.0",
56
- "ws": "^8.18.3"
57
+ "ws": "^8.19.0"
57
58
  },
58
59
  "files": [
59
60
  "ts/**/*",
package/readme.hints.md CHANGED
@@ -6,7 +6,7 @@ This project integrates tstest with tapbundle through a modular architecture:
6
6
 
7
7
  1. **tstest** (`/ts/`) - The test runner that discovers and executes test files
8
8
  2. **tapbundle** (`/ts_tapbundle/`) - The TAP testing framework for writing tests
9
- 3. **tapbundle_serverside** (`/ts_tapbundle_serverside/`) - Server-side testing utilities (runCommand, env vars, HTTPS certs, MongoDB, S3, test assets)
9
+ 3. **tapbundle_serverside** (`/ts_tapbundle_serverside/`) - Server-side testing utilities (network port finding, runCommand, env vars, HTTPS certs, MongoDB, S3, test assets)
10
10
 
11
11
  ## How Components Work Together
12
12