Fix database test data

This commit is contained in:
Alex Mikhalev 2019-07-19 23:59:20 -06:00
parent 9b54655344
commit fd4f4025de

View File

@ -43,17 +43,17 @@ export class Database {
}
async insertTestData() {
const NUM = 100;
const NUM = 50;
const users: User[] = [];
for (let i = 0; i < NUM; i++) {
const username = "alex" + i % 50;
const username = "alex" + i;
let user = await this.users.findByUsername(username);
// if (!user) {
if (!user) {
user = await this.users.create({
name: "Alex Mikhalev" + i,
username
});
// }
}
await user.setPassword("kakashka" + i);
users.push(user);
}