@agent-inspect/jest 6.7.1 → 6.7.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 +11 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Jest reporter — local trace artifacts on failed tests.
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
**Support level:** Supported — see [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md).
|
|
7
|
+
|
|
5
8
|
## When to use
|
|
6
9
|
|
|
7
10
|
- Jest test suites with AgentInspect-instrumented agents
|
|
@@ -43,17 +46,24 @@ Jest reporter class / factory (see package types).
|
|
|
43
46
|
|
|
44
47
|
`npx agent-inspect report` on uploaded CI artifacts
|
|
45
48
|
|
|
49
|
+
## Limitations
|
|
50
|
+
|
|
51
|
+
- This package is a **reporter** (failure artifacts). It does **not** ship Jest TraceContract matchers.
|
|
52
|
+
- Use `agent-inspect check` / TraceContract APIs for trajectory assertions.
|
|
53
|
+
|
|
46
54
|
## Docs
|
|
47
55
|
|
|
48
56
|
- [CI artifacts](https://github.com/rajudandigam/agent-inspect/blob/main/docs/CI-ARTIFACTS.md)
|
|
57
|
+
- [TRACE-CONTRACTS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/TRACE-CONTRACTS.md)
|
|
49
58
|
|
|
50
59
|
## Troubleshooting
|
|
51
60
|
|
|
52
61
|
- **Reporter not loaded:** Check Jest `reporters` array syntax for your Jest version
|
|
53
62
|
|
|
63
|
+
|
|
54
64
|
## Version
|
|
55
65
|
|
|
56
|
-
|
|
66
|
+
Part of the fixed AgentInspect release line. See the npm badge / package manifest for the current version.
|
|
57
67
|
|
|
58
68
|
## License
|
|
59
69
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-inspect/jest",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Optional Jest reporter for AgentInspect local trace artifacts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"agent-inspect": "6.7.
|
|
45
|
+
"agent-inspect": "6.7.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"jest": "^30.2.0"
|