mirror of
https://github.com/immich-app/immich.git
synced 2025-12-05 23:00:33 -08:00
* feat: timeline e2e tests * Fix flakiness, mock all apis, allow parallel tests * Upload playwright reports * wrong report path * Add CI=true, disable flaky/failing tests * Re-enable tests, fix worker thread config * fix maintance e2e test * increase retries
38 lines
1003 B
TypeScript
38 lines
1003 B
TypeScript
export { generateTimelineData } from './timeline/model-objects';
|
|
|
|
export { createDefaultTimelineConfig, validateTimelineConfig } from './timeline/timeline-config';
|
|
|
|
export type {
|
|
MockAlbum,
|
|
MonthSpec,
|
|
SerializedTimelineData,
|
|
MockTimelineAsset as TimelineAssetConfig,
|
|
TimelineConfig,
|
|
MockTimelineData as TimelineData,
|
|
} from './timeline/timeline-config';
|
|
|
|
export {
|
|
getAlbum,
|
|
getAsset,
|
|
getTimeBucket,
|
|
getTimeBuckets,
|
|
toAssetResponseDto,
|
|
toColumnarFormat,
|
|
} from './timeline/rest-response';
|
|
|
|
export type { Changes } from './timeline/rest-response';
|
|
|
|
export { randomImage, randomImageFromString, randomPreview, randomThumbnail } from './timeline/images';
|
|
|
|
export {
|
|
SeededRandom,
|
|
getMockAsset,
|
|
parseTimeBucketKey,
|
|
selectRandom,
|
|
selectRandomDays,
|
|
selectRandomMultiple,
|
|
} from './timeline/utils';
|
|
|
|
export { ASSET_DISTRIBUTION, DAY_DISTRIBUTION } from './timeline/distribution-patterns';
|
|
export type { DayPattern, MonthDistribution } from './timeline/distribution-patterns';
|