feat: add core contracts

This commit is contained in:
chungyeong
2026-05-09 22:45:44 +09:00
parent 42f0fb193d
commit 44103839af
11 changed files with 377 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { describe, expect, it } from "vitest";
import { RunEventPayloadSchemas, RunEventTypeValues } from "./run-event.js";
describe("run events", () => {
it("keeps a payload schema for every closed run event type", () => {
expect(Object.keys(RunEventPayloadSchemas).sort()).toEqual([...RunEventTypeValues].sort());
});
});