describe("shouldUseBottomSheetForPayments", () => {
  it("should return false, cancelled message, undefined payments", () => {
    const showMorePayments = shouldUseBottomSheetForPayments(true, undefined);
    expect(showMorePayments).toBe(false);
  });