diff --git a/content/300-guides/150-testing/100-unit-testing.mdx b/content/300-guides/150-testing/100-unit-testing.mdx index 0cb0b4b5aa..fb0472e419 100644 --- a/content/300-guides/150-testing/100-unit-testing.mdx +++ b/content/300-guides/150-testing/100-unit-testing.mdx @@ -294,6 +294,7 @@ test('should update a users name ', async () => { id: 1, name: 'Rich Haines', email: 'hello@prisma.io', + acceptTermsAndConditions: true, } prismaMock.user.update.mockResolvedValue(user) @@ -302,6 +303,7 @@ test('should update a users name ', async () => { id: 1, name: 'Rich Haines', email: 'hello@prisma.io', + acceptTermsAndConditions: true, }) })