Correct index file and add a favicon. increment version
import { Record } from '../index';
describe('test on record', () => {
it('Test simple record creation', () => {
const TestRecord = Record({ foo: 'bar', hello: 'world'});
expect(
TestRecord({ a: 'b', foo: 'foobar' })
).toEqual(
{ foo: 'foobar', hello: 'world'}
)
});
});