test: add widget config tests (batch 7)

This commit is contained in:
shamoon
2026-02-04 10:10:38 -08:00
parent ed54a22841
commit 254b2cb2e4
21 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
import { describe, it } from "vitest";
import { expectWidgetConfigShape } from "test-utils/widget-config";
import widget from "./widget";
describe("pyload widget config", () => {
it("exports a valid widget config", () => {
expectWidgetConfigShape(widget);
});
});