supercov 0.0.25 → 0.0.26
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 +6 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -78,6 +78,12 @@ Supercov supplies the coverage signal and evidence. It does not host, schedule,
|
|
|
78
78
|
|
|
79
79
|
Before a reset—or overnight—turn idle agent time into coverage that stays with the repository. Every pass should close a small number of useful gaps and finish with evidence that the tests still pass and coverage improved.
|
|
80
80
|
|
|
81
|
+
## For software factories
|
|
82
|
+
|
|
83
|
+
Add Supercov as a repeatable coverage loop in an automated software factory. Every pass runs the real suite, chooses a useful uncovered path, writes one focused test, reruns, and proves the gain. Fresh, executable evidence lets agents keep iterating around the clock while failed tests and regressions stop the loop before they ship.
|
|
84
|
+
|
|
85
|
+
Your factory schedules the work; Supercov gives each agent a bounded next task and a durable record of what improved.
|
|
86
|
+
|
|
81
87
|
## Read the result
|
|
82
88
|
|
|
83
89
|
Start with the summary, then narrow to one useful target:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supercov",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.26",
|
|
4
4
|
"description": "Zero-edit, runner-aware coverage completeness for JavaScript test suites",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"prepublishOnly": "npm run release:check"
|
|
69
69
|
},
|
|
70
70
|
"optionalDependencies": {
|
|
71
|
-
"@supercov/cli-darwin-arm64": "0.0.
|
|
72
|
-
"@supercov/cli-darwin-x64": "0.0.
|
|
73
|
-
"@supercov/cli-linux-arm64-gnu": "0.0.
|
|
74
|
-
"@supercov/cli-linux-arm64-musl": "0.0.
|
|
75
|
-
"@supercov/cli-linux-x64-gnu": "0.0.
|
|
76
|
-
"@supercov/cli-linux-x64-musl": "0.0.
|
|
71
|
+
"@supercov/cli-darwin-arm64": "0.0.26",
|
|
72
|
+
"@supercov/cli-darwin-x64": "0.0.26",
|
|
73
|
+
"@supercov/cli-linux-arm64-gnu": "0.0.26",
|
|
74
|
+
"@supercov/cli-linux-arm64-musl": "0.0.26",
|
|
75
|
+
"@supercov/cli-linux-x64-gnu": "0.0.26",
|
|
76
|
+
"@supercov/cli-linux-x64-musl": "0.0.26"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"@playwright/test": ">=1.55.0",
|