mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
10 lines
325 B
TypeScript
10 lines
325 B
TypeScript
import { describe, expect, test } from "bun:test";
|
|
import { JsonSchemaField } from "../../../../src/data";
|
|
import { runBaseFieldTests } from "./inc";
|
|
|
|
describe("[data] JsonSchemaField", async () => {
|
|
runBaseFieldTests(JsonSchemaField, { defaultValue: {}, schemaType: "text" });
|
|
|
|
// @todo: add JsonSchemaField tests
|
|
});
|