Skip to content

Commit

Permalink
added faker internet urls to eventfactory
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-dange committed Jan 20, 2024
1 parent 175af99 commit 7b3a257
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/data/EventFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ export class EventFactory {
requiresStaff: FactoryUtils.getRandomBoolean(),
staffPointBonus: EventFactory.randomPointValue(),
committee: 'ACM',
cover: 'https://google.com',
cover: faker.internet.url(),
deleted: false,
eventLink: 'https://google.com',
thumbnail: 'https://google.com',
eventLink: faker.internet.url(),
thumbnail: faker.internet.url(),
});
return EventModel.merge(fake, substitute);
}
Expand Down

0 comments on commit 7b3a257

Please sign in to comment.