diff --git a/README.md b/README.md
index a1ae4d5..331b0e2 100644
--- a/README.md
+++ b/README.md
@@ -133,6 +133,10 @@ Build and run it using as-test
npm run test
```
+And you should see an output similar to this:
+
+
+
## Running
diff --git a/assets/img/download.png b/assets/img/download.png
deleted file mode 100644
index 07c3843..0000000
Binary files a/assets/img/download.png and /dev/null differ
diff --git a/assets/img/screenshot.png b/assets/img/screenshot.png
new file mode 100644
index 0000000..50f8d72
Binary files /dev/null and b/assets/img/screenshot.png differ
diff --git a/jest.test.js b/jest.test.js
deleted file mode 100644
index 27179a3..0000000
--- a/jest.test.js
+++ /dev/null
@@ -1,44 +0,0 @@
-describe("Math operations", () => {
- // Setup before each test in this group (optional)
- beforeEach(() => {
- log("Initializing test...");
- });
-
- // Teardown after each test in this group (optional)
- afterEach(() => {
- log("Cleaning up after test...");
- });
-
- test("Addition", () => {
- expect(1 + 2).toBe(3);
- });
-
- test("Comparison", () => {
- expect(5).toBeGreaterThan(3);
- expect(2).toBeLessThan(4);
- });
-
- test("Type checking", () => {
- expect("hello").toBeString();
- expect(true).toBeBoolean();
- expect(10.5).toBeNumber();
- });
-});
-
-let myArray = [];
-
-describe("Array manipulation", () => {
- beforeAll(() => {
- myArray = [1, 2, 3];
- });
-
- test("Array length", () => {
- expect(myArray).toHaveLength(3);
- });
-
- test("Array inclusion", () => {
- expect(myArray).toContain(2);
- });
-});
-
-function foo() {}
diff --git a/package.json b/package.json
index f42d85a..66bd391 100644
--- a/package.json
+++ b/package.json
@@ -31,7 +31,6 @@
"as-variant": "^0.4.1",
"chalk": "^5.3.0",
"glob": "^11.0.0",
- "jest": "^29.7.0",
"json-as": "^0.9.14",
"typer-diff": "^1.1.1"
},