import { capitalize } from './capitalize';

test('capitalize', () => {
  expect(capitalize('andrius')).toEqual('Andrius');
});
