supercov 0.0.49 → 0.0.50
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 +4 -0
- package/docs/getting-started.md +14 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -19,6 +19,10 @@ to add a test in your own project, with a recorded example to follow along.
|
|
|
19
19
|
npx supercov -- npm test
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
+
Other ways in, all the same binary at the same version: `brew install
|
|
23
|
+
supercorp-ai/tap/supercov`, or for a Go project `go run
|
|
24
|
+
github.com/supercorp-ai/supercov/cmd/supercov@latest`.
|
|
25
|
+
|
|
22
26
|
Everything after `--` is your test command. Supercov runs it without changing your source, tests, runner configuration, or normal build output.
|
|
23
27
|
|
|
24
28
|
Then ask what is still uncovered:
|
package/docs/getting-started.md
CHANGED
|
@@ -121,6 +121,20 @@ on crates.io (`cargo install supercov`). The first invocation may download
|
|
|
121
121
|
Supercov from the registry. Supercov itself does not upload your source or
|
|
122
122
|
coverage evidence to a Supercov service.
|
|
123
123
|
|
|
124
|
+
Whichever language your project is in, you should not have to install another
|
|
125
|
+
one first. Go runs it the way Go runs any tool, and without touching your
|
|
126
|
+
`go.mod`:
|
|
127
|
+
|
|
128
|
+
```sh supercov
|
|
129
|
+
go run github.com/supercorp-ai/supercov/cmd/supercov@latest -- go test ./...
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Homebrew installs the same binary for everything else, a JVM project included:
|
|
133
|
+
|
|
134
|
+
```sh
|
|
135
|
+
brew install supercorp-ai/tap/supercov
|
|
136
|
+
```
|
|
137
|
+
|
|
124
138
|
## Files and cleanup
|
|
125
139
|
|
|
126
140
|
Completed runs live under `.supercov/runs/`. Supercov also keeps an isolated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supercov",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.50",
|
|
4
4
|
"description": "Coverage for coding agents and software factories \ud83c\udf19",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -96,14 +96,14 @@
|
|
|
96
96
|
"docs:check": "node scripts/sync-docs.mjs --check"
|
|
97
97
|
},
|
|
98
98
|
"optionalDependencies": {
|
|
99
|
-
"@supercov/cli-darwin-arm64": "0.0.
|
|
100
|
-
"@supercov/cli-darwin-x64": "0.0.
|
|
101
|
-
"@supercov/cli-linux-arm64-gnu": "0.0.
|
|
102
|
-
"@supercov/cli-linux-arm64-musl": "0.0.
|
|
103
|
-
"@supercov/cli-linux-x64-gnu": "0.0.
|
|
104
|
-
"@supercov/cli-linux-x64-musl": "0.0.
|
|
105
|
-
"@supercov/cli-win32-arm64": "0.0.
|
|
106
|
-
"@supercov/cli-win32-x64": "0.0.
|
|
99
|
+
"@supercov/cli-darwin-arm64": "0.0.50",
|
|
100
|
+
"@supercov/cli-darwin-x64": "0.0.50",
|
|
101
|
+
"@supercov/cli-linux-arm64-gnu": "0.0.50",
|
|
102
|
+
"@supercov/cli-linux-arm64-musl": "0.0.50",
|
|
103
|
+
"@supercov/cli-linux-x64-gnu": "0.0.50",
|
|
104
|
+
"@supercov/cli-linux-x64-musl": "0.0.50",
|
|
105
|
+
"@supercov/cli-win32-arm64": "0.0.50",
|
|
106
|
+
"@supercov/cli-win32-x64": "0.0.50"
|
|
107
107
|
},
|
|
108
108
|
"peerDependencies": {
|
|
109
109
|
"@playwright/test": ">=1.55.0",
|