@appthrust/kest 0.1.1 → 0.1.2

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 (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # Kest
2
2
 
3
+ ![Kest – Kubernetes E2E testing designed for humans and AI alike](social-preview.svg)
4
+
3
5
  > **Preview Release** -- Kest is currently in `0.x` preview. The API may change based on feedback. Breaking changes can occur in any `0.x` release. A stable `1.0.0` will be released once the API solidifies. Feel free to [open an issue](https://github.com/appthrust/kest/issues/new) if you have any feedback.
4
6
 
5
- **TypeScript-first E2E testing framework for Kubernetes**
7
+ **Kubernetes E2E testing designed for humans and AI alike**
6
8
 
7
- Kest makes it easy to write reliable end-to-end tests for Kubernetes controllers, operators, and admission webhooks. You write test scenarios in TypeScript with full type safety, autocompletion, and the familiar `expect()` API.
9
+ Kest makes it easy to write reliable end-to-end tests for Kubernetes controllers, operators, and admission webhooks. You write test scenarios in TypeScript with full type safety, autocompletion, and the familiar `expect()` API. When a test fails, Kest generates structured Markdown reports that are easy for humans to scan and for AI assistants to parse -- making troubleshooting straightforward regardless of who (or what) is debugging.
8
10
 
9
11
  ```ts
10
12
  import { expect } from "bun:test";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appthrust/kest",
3
- "version": "0.1.1",
4
- "description": "TypeScript-first E2E testing framework for Kubernetes controllers, operators, and webhooks",
3
+ "version": "0.1.2",
4
+ "description": "Kubernetes E2E testing framework designed for humans and AI alike",
5
5
  "type": "module",
6
6
  "module": "ts/index.ts",
7
7
  "exports": {