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

Building JavaScript objects inspired by rosie.js and factory_girl

Results 1 factory-js issues
Sort by recently updated
recently updated
newest added

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}) ```