Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"type": "module",
"description": "A hello-world native Temps plugin",
"author": "Your team",
"author": "David Viejo",
"repository": "https://github.com/your-org/your-plugin",
"scripts": {
"test": "bun test",
Expand Down
4 changes: 4 additions & 0 deletions src/screenshots.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
import { expect, test } from "bun:test";
import pkg from "../package.json";

test("the published template credits its maintainer instead of placeholder metadata", () => {
expect(pkg.author).toBe("David Viejo");
});

test("registry screenshots reference real PNG assets with accessible descriptions", async () => {
expect(pkg.temps.screenshots).toHaveLength(2);
for (const screenshot of pkg.temps.screenshots) {
Expand Down
Loading