Skip to content

Instantly share code, notes, and snippets.

@Goldziher
Last active August 1, 2021 06:45
Show Gist options
  • Save Goldziher/e16533bc1137c162f2ea47c3a96acf83 to your computer and use it in GitHub Desktop.
Save Goldziher/e16533bc1137c162f2ea47c3a96acf83 to your computer and use it in GitHub Desktop.
Reduced code duplication factory example
export const UserDTOFactory = new FixtureFactory<UserDTO>(() => {
const { profile, ...user } = UserFactory.buildSync();
return {
...user,
...profile,
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment