We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de3f17c commit 166d920Copy full SHA for 166d920
src/test/scalars.spec.ts
@@ -19,7 +19,7 @@ describe('scalars', () => {
19
}));
20
});
21
22
- it('bytes should have type equal to prisma', () => {
+ it('bytes should have type equal to prisma not null', () => {
23
const s = testSourceFile({
24
file: 'user.model.ts',
25
project,
@@ -28,7 +28,7 @@ describe('scalars', () => {
28
expect(s.property?.type).toEqual('Uint8Array');
29
30
31
+ it('bytes should have type equal to prisma nullable', () => {
32
33
34
0 commit comments