From d0176c2b65b0a5c720222d2b4e56fcb489528388 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Fri, 27 Feb 2026 17:17:41 +0100 Subject: [PATCH] Seed more profiles --- tests/e2e/utils/seed-test-data.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/e2e/utils/seed-test-data.ts b/tests/e2e/utils/seed-test-data.ts index 3d75c911..bb19ac26 100644 --- a/tests/e2e/utils/seed-test-data.ts +++ b/tests/e2e/utils/seed-test-data.ts @@ -60,9 +60,9 @@ type ProfileType = 'basic' | 'medium' | 'full' //Edit the count seedConfig to specify the amount of each profiles to create const seedConfig = [ - {count: 1, profileType: 'basic' as ProfileType}, - {count: 1, profileType: 'medium' as ProfileType}, - {count: 1, profileType: 'full' as ProfileType}, + {count: 8, profileType: 'basic' as ProfileType}, + {count: 8, profileType: 'medium' as ProfileType}, + {count: 8, profileType: 'full' as ProfileType}, ] for (const {count, profileType} of seedConfig) {