// create a 'stub' Customer with only a few fields populated (those fields we need for the test)
    let x = stub<CustomerBase>({
      firstname: 'joe',
      lastname: 'schmoe',
      save: jest.fn(),
    })