fix schema import path

This commit is contained in:
dswbx
2025-07-07 16:09:29 +02:00
parent 43c8f14470
commit 88ec3432a0
97 changed files with 180 additions and 180 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
import { Guard } from "../../src/auth";
import { parse } from "core/object/schema";
import { parse } from "bknd/core";
import {
Entity,
type EntityData,
+1 -1
View File
@@ -1,5 +1,5 @@
import { afterAll, expect as bunExpect, describe, test } from "bun:test";
import { stripMark } from "core/object/schema";
import { stripMark } from "bknd/core";
import { Entity, EntityManager, PolymorphicRelation, TextField } from "../../src/data";
import { getDummyConnection } from "./helper";
+1 -1
View File
@@ -2,7 +2,7 @@ import { describe, expect, test } from "bun:test";
import { baseFieldConfigSchema, Field } from "../../../../src/data/fields/Field";
import { fieldTestSuite } from "data/fields/field-test-suite";
import { bunTestRunner } from "adapter/bun/test";
import { stripMark } from "core/object/schema";
import { stripMark } from "bknd/core";
describe("[data] Field", async () => {
class FieldSpec extends Field {
@@ -1,6 +1,6 @@
import { describe, expect, test } from "bun:test";
import { Entity, EntityIndex, Field } from "../../../../src/data";
import { s } from "core/object/schema";
import { s } from "bknd/core";
class TestField extends Field {
protected getSchema(): any {