mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +00:00
ca55503e66
* refactored core and core/utils imports * refactored core and core/utils imports * refactored media imports * refactored auth imports * refactored data imports * updated package json exports, fixed mm config * fix tests
11 lines
368 B
TypeScript
11 lines
368 B
TypeScript
import { describe, expect, test } from "bun:test";
|
|
import { JsonSchemaField } from "data/fields";
|
|
import { fieldTestSuite } from "data/fields/field-test-suite";
|
|
|
|
describe("[data] JsonSchemaField", async () => {
|
|
// @ts-ignore
|
|
fieldTestSuite({ expect, test }, JsonSchemaField, { defaultValue: {}, schemaType: "text" });
|
|
|
|
// @todo: add JsonSchemaField tests
|
|
});
|