Skip to content

Instantly share code, notes, and snippets.

@peterKaleta
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterKaleta/6e21846cea4668495d36 to your computer and use it in GitHub Desktop.
Save peterKaleta/6e21846cea4668495d36 to your computer and use it in GitHub Desktop.
var fixtureFactory = require('fixture-factory'); 
//create definition which will be used as a blueprint in factory
var userBlueprint = {
firstName: 'name.firstName',
lastName: 'name.lastName',
email: 'internet.email',
city: 'address.city',
country: 'address.country'
};
//register it for general use
fixtureFactory('user', userBlueprint);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment