test: add widget config tests (batch 6)

This commit is contained in:
shamoon
2026-02-04 10:06:19 -08:00
parent 6aef031711
commit ed54a22841
21 changed files with 220 additions and 7 deletions

View File

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