Skip to content

Commit

Permalink
test: call field customization test
Browse files Browse the repository at this point in the history
  • Loading branch information
farreldarian committed Jun 13, 2024
1 parent 7bdf3af commit 20cdb29
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/usage/tests/mysql.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -25,3 +26,4 @@ testDisambiguatingRelationship(ctx)
testSelfReferring(ctx)
testIgnoreDecorator(ctx)
testDefault(ctx)
testFieldCustomization(ctx)
2 changes: 2 additions & 0 deletions packages/usage/tests/postgres.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -20,3 +21,4 @@ testDisambiguatingRelationship(ctx)
testSelfReferring(ctx)
testIgnoreDecorator(ctx)
testDefault(ctx)
testFieldCustomization(ctx)
2 changes: 2 additions & 0 deletions packages/usage/tests/sqlite.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -25,3 +26,4 @@ testDisambiguatingRelationship(ctx)
testSelfReferring(ctx)
testIgnoreDecorator(ctx)
testDefault(ctx)
testFieldCustomization(ctx)

0 comments on commit 20cdb29

Please sign in to comment.