factory-js icon indicating copy to clipboard operation
factory-js copied to clipboard

Refactor factory definition

Open tb opened this issue 8 years ago • 0 comments

Refactor factory definition to enable:

export const Vote = Factory.define('vote')
  .sequence('id')
  .attr('value', 0)

and then

import { Vote } from 'factories';

Vote.build({value: 1})

tb avatar Nov 17 '16 22:11 tb