BuildList always returns the same result, even though I'm using faker to try to auto generate values. Is there a way this can be randomized?
Example:
const results = myFactory.buildList(3);
Expected
{
[dayOftheWeek: 'Tuesday'],
[dayOftheWeek: 'Wednesday'],
[dayOftheWeek: 'Friday'],
}
Actual
{
[dayOftheWeek: 'Tuesday'],
[dayOftheWeek: 'Tuesday'],
[dayOftheWeek: 'Tuesday'],
}