When using some Waterline adapters the fixtures are populated out of order even if a load order is provided due to the use of async.each, resulting in error messages such as
Invalid attributes sent to Passport:
• user
• "required" validation rule failed for input: null
This fixes the issue by switching to async.eachSeries. See #31 for further discussion.
When using some Waterline adapters the fixtures are populated out of order even if a load order is provided due to the use of
async.each
, resulting in error messages such asThis fixes the issue by switching to
async.eachSeries
. See #31 for further discussion.