Add protocols module, and add a way to change the config ini file path
import{Record}from'../index';describe('test on record',()=>{it('Test simple record creation',()=>{constTestRecord=Record({foo:'bar',hello:'world'});expect(TestRecord({a:'b',foo:'foobar'})).toEqual({foo:'foobar',hello:'world'})});});