it('Returns proper error message for fields longer than the cap.', () => {
   expect(
     shorterThanDbVarChar(
       'RYE9p5bdMt81iYXh4sGgZayBqGyW5bfUjzJGOmBPSg6DNlBXd6wspRGB8O24RHcxtu6S9tnsY1tYaHzAnNJwTD4iHuo0iTljDzpgjWAYjlWUXcqnUb0QEjjsQSvQwh81JqleKlkqKOEpxrlNiWtn3UUphSsN5pmNhJHvn4HQK02fvRaQ336ijraQa4LhgrUeMWKjAyfNyRrcswbDdJjDPQAfTQ1bAWYmxCk8MYT8uvNyb6ORw5VmJRrlA4FJztDQ',
     ),
   ).toBe(
     'The database restricts this field to a maximum value of 255 characters.',
   );
 });
 it('Returns null for strings under the length of the cap..', () => {
   expect(shorterThanDbVarChar('Reasonable length text')).toBe(null);
 });