From 4f4b18df27ebdab7ea57d725fe363a9825f190c8 Mon Sep 17 00:00:00 2001 From: farreldarian Date: Thu, 13 Jun 2024 18:06:42 +0700 Subject: [PATCH] test: call field customization test --- packages/usage/tests/mysql.test.ts | 2 ++ packages/usage/tests/postgres.test.ts | 2 ++ packages/usage/tests/sqlite.test.ts | 2 ++ 3 files changed, 6 insertions(+) diff --git a/packages/usage/tests/mysql.test.ts b/packages/usage/tests/mysql.test.ts index 9453fe6..ac78426 100644 --- a/packages/usage/tests/mysql.test.ts +++ b/packages/usage/tests/mysql.test.ts @@ -3,6 +3,7 @@ import { db } from 'src/lib/mysql' import type { Db, Schema } from 'src/lib/types' import { testDefault } from './shared/testDefault' import { testDisambiguatingRelationship } from './shared/testDisambiguatingRelationship' +import { testFieldCustomization } from './shared/testFieldCustomization' import { testFields } from './shared/testFields' import { testIgnoreDecorator } from './shared/testIgnoreDecorator' import { testManyToMany } from './shared/testManyToMany' @@ -25,3 +26,4 @@ testDisambiguatingRelationship(ctx) testSelfReferring(ctx) testIgnoreDecorator(ctx) testDefault(ctx) +testFieldCustomization(ctx) diff --git a/packages/usage/tests/postgres.test.ts b/packages/usage/tests/postgres.test.ts index 1617f23..e3b6541 100644 --- a/packages/usage/tests/postgres.test.ts +++ b/packages/usage/tests/postgres.test.ts @@ -2,6 +2,7 @@ import { schema } from 'prisma/drizzle/schema' import { db } from 'src/lib/postgres' import { testDefault } from './shared/testDefault' import { testDisambiguatingRelationship } from './shared/testDisambiguatingRelationship' +import { testFieldCustomization } from './shared/testFieldCustomization' import { testFields } from './shared/testFields' import { testIgnoreDecorator } from './shared/testIgnoreDecorator' import { testManyToMany } from './shared/testManyToMany' @@ -20,3 +21,4 @@ testDisambiguatingRelationship(ctx) testSelfReferring(ctx) testIgnoreDecorator(ctx) testDefault(ctx) +testFieldCustomization(ctx) diff --git a/packages/usage/tests/sqlite.test.ts b/packages/usage/tests/sqlite.test.ts index 309a75b..ba484c0 100644 --- a/packages/usage/tests/sqlite.test.ts +++ b/packages/usage/tests/sqlite.test.ts @@ -3,6 +3,7 @@ import { db } from 'src/lib/sqlite' import type { Db, Schema } from 'src/lib/types' import { testDefault } from './shared/testDefault' import { testDisambiguatingRelationship } from './shared/testDisambiguatingRelationship' +import { testFieldCustomization } from './shared/testFieldCustomization' import { testFields } from './shared/testFields' import { testIgnoreDecorator } from './shared/testIgnoreDecorator' import { testManyToMany } from './shared/testManyToMany' @@ -25,3 +26,4 @@ testDisambiguatingRelationship(ctx) testSelfReferring(ctx) testIgnoreDecorator(ctx) testDefault(ctx) +testFieldCustomization(ctx)