13 lines
391 B
Dart
13 lines
391 B
Dart
/// Reusable UTC date anchors for timeline tests.
|
|
///
|
|
/// All dates are UTC to avoid timezone flakiness.
|
|
|
|
/// Domain start: June 1, 2025 00:00 UTC.
|
|
final kDomainStart = DateTime.utc(2025, 6, 1);
|
|
|
|
/// Domain end: July 1, 2025 00:00 UTC (30-day domain).
|
|
final kDomainEnd = DateTime.utc(2025, 7, 1);
|
|
|
|
/// Midpoint anchor: June 15, 2025 12:00 UTC.
|
|
final kAnchor = DateTime.utc(2025, 6, 15, 12);
|