Generic Entity Builder for testing

Provides a fluent API for building test entities.

const user = new EntityBuilder(User)
.withProps({ email: 'test@example.com', name: 'Test' })
.build();

Type Parameters

  • E extends Entity<any>

Constructors

Methods