mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +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
|
|
});
|