From 166d9202cde7c7095a34379f0f8affc9096a0896 Mon Sep 17 00:00:00 2001 From: Roman Date: Sat, 18 Jan 2025 14:04:56 +0400 Subject: [PATCH] test: Update test case names --- src/test/scalars.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/scalars.spec.ts b/src/test/scalars.spec.ts index 8a87ff6e..255a63d0 100644 --- a/src/test/scalars.spec.ts +++ b/src/test/scalars.spec.ts @@ -19,7 +19,7 @@ describe('scalars', () => { })); }); - it('bytes should have type equal to prisma', () => { + it('bytes should have type equal to prisma not null', () => { const s = testSourceFile({ file: 'user.model.ts', project, @@ -28,7 +28,7 @@ describe('scalars', () => { expect(s.property?.type).toEqual('Uint8Array'); }); - it('bytes should have type equal to prisma', () => { + it('bytes should have type equal to prisma nullable', () => { const s = testSourceFile({ file: 'user.model.ts', project,