tests: tests for dart repositories

This commit is contained in:
2025-01-04 16:25:00 +00:00
parent bdfb08f092
commit d4bf238f50
16 changed files with 1493 additions and 37 deletions
@@ -13,8 +13,8 @@ class UserDboMapper {
name: target.name!,
email: target.email!,
passwordHash: target.password,
createdAt: target.createdAt,
updatedAt: target.updatedAt,
createdAt: target.createdAt!,
updatedAt: target.updatedAt!,
));
TaskEither<IError, List<User>> listFrom(Iterable<UserDbo> targets) {