mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
14 lines
438 B
TypeScript
14 lines
438 B
TypeScript
import { describe, expect, test } from "bun:test";
|
|
import { parse } from "../../src/core/utils";
|
|
import { fieldsSchema } from "../../src/data/data-schema";
|
|
import { AppData } from "../../src/modules";
|
|
import { moduleTestSuite } from "./module-test-suite";
|
|
|
|
describe("AppData", () => {
|
|
moduleTestSuite(AppData);
|
|
|
|
test("field config construction", () => {
|
|
expect(parse(fieldsSchema, { type: "text" })).toBeDefined();
|
|
});
|
|
});
|