tape-six 1.4.2 → 1.4.3
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.
- package/README.md +1 -0
- package/package.json +4 -4
- package/src/TTYReporter.js +2 -1
package/README.md
CHANGED
|
@@ -380,6 +380,7 @@ Test output can be controlled by flags. See [Supported flags](https://github.com
|
|
|
380
380
|
|
|
381
381
|
The most recent releases:
|
|
382
382
|
|
|
383
|
+
- 1.4.3 _Updated dev dependencies + a minor bugfix._
|
|
383
384
|
- 1.4.2 _Improved documentation._
|
|
384
385
|
- 1.4.1 _Added browser automation support._
|
|
385
386
|
- 1.4.0 _Added a high-level helper `OK()` for evaluating simple expressions._
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tape-six",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "TAP the test harness for the modern JavaScript (ES6).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -79,9 +79,9 @@
|
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@types/node": "^25.0.
|
|
83
|
-
"playwright": "^1.
|
|
84
|
-
"puppeteer": "^24.
|
|
82
|
+
"@types/node": "^25.0.10",
|
|
83
|
+
"playwright": "^1.58.0",
|
|
84
|
+
"puppeteer": "^24.36.0",
|
|
85
85
|
"typescript": "^5.9.3"
|
|
86
86
|
}
|
|
87
87
|
}
|
package/src/TTYReporter.js
CHANGED
|
@@ -397,7 +397,8 @@ export class TTYReporter {
|
|
|
397
397
|
this.out(
|
|
398
398
|
this.success(' ' + this.successfulAsserts + ' ') +
|
|
399
399
|
this.failure(' ' + this.failedAsserts + ' ') +
|
|
400
|
-
(this.skippedAsserts ? this.skipped(' ' + this.skippedAsserts + ' ') : '',
|
|
400
|
+
(this.skippedAsserts ? this.skipped(' ' + this.skippedAsserts + ' ') : ''),
|
|
401
|
+
true
|
|
401
402
|
);
|
|
402
403
|
}
|
|
403
404
|
makeState(state) {
|