Skip to content

Commit

Permalink
change test user names
Browse files Browse the repository at this point in the history
  • Loading branch information
LenaNguyen committed Feb 20, 2022
1 parent 2f92b03 commit 9a3661c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions backend/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ const prisma = new PrismaClient();

const users = [
{
firstName: "admin",
lastName: "sistering",
firstName: "Anastasia",
lastName: "Admin",
authId: process.env.ADMIN_UID,
role: Role.ADMIN,
},
{
firstName: "volunteer",
lastName: "sistering",
firstName: "Valorie",
lastName: "Volunteer",
authId: process.env.VOLUNTEER_UID,
role: Role.VOLUNTEER,
volunteer: {
Expand All @@ -24,8 +24,8 @@ const users = [
},
},
{
firstName: "employee",
lastName: "sistering",
firstName: "Edna",
lastName: "Employee",
authId: process.env.EMPLOYEE_UID,
role: Role.EMPLOYEE,
},
Expand Down

0 comments on commit 9a3661c

Please sign in to comment.