Skip to content

Instantly share code, notes, and snippets.

@owenconti
Last active September 23, 2020 04:40
Show Gist options
  • Save owenconti/0ab7a987c64ab4cef50bd392142710bc to your computer and use it in GitHub Desktop.
Save owenconti/0ab7a987c64ab4cef50bd392142710bc to your computer and use it in GitHub Desktop.
Fixing duplicate ID errors with typeorm-factory
const PerkCategoryFactory = new Factory(PerkCategory)
.sequence('name', () => faker.lorem.word());
const PerkCategoryFactory = new Factory(PerkCategory)
.attr('name', faker.lorem.word());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment