diff --git a/web/src/test-data/factories/asset-factory.ts b/web/src/test-data/factories/asset-factory.ts index 28eed7bc6e..42d312663b 100644 --- a/web/src/test-data/factories/asset-factory.ts +++ b/web/src/test-data/factories/asset-factory.ts @@ -42,4 +42,9 @@ export const timelineAssetFactory = Sync.makeFactory({ stack: null, projectionType: null, livePhotoVideoId: Sync.each(() => faker.string.uuid()), + text: Sync.each(() => ({ + city: faker.location.city(), + country: faker.location.country(), + people: [faker.person.fullName()], + })), });