import { <%= functionName %> } from '.';

describe('<%= functionName %>', () => {
  it('normal', async () => {
    expect(<%= functionName %>('Foo', 'Bar')).toBe('Foo Bar');
  });

  it('lastName upper case', async () => {
    expect(<%= functionName %>('Foo', 'Bar', { lastNameUpperCase: true })).toBe('Foo BAR');
  });
});
