share weekKey extension and log splash precache failures

This commit is contained in:
2026-07-12 23:56:47 +02:00
parent f50359b4eb
commit 53bc6d5360
5 changed files with 15 additions and 10 deletions
+5
View File
@@ -115,6 +115,11 @@ void main() {
final end = dt.add(const Duration(minutes: 45));
expect(dt.timeRangeTo(end), '09:07 - 09:52');
});
test('weekKey renders a zero-padded yyyyMMdd key', () {
expect(dt.weekKey(), '20260508');
expect(DateTime(2026, 12, 31).weekKey(), '20261231');
});
});
group('formatDateRelativeShort', () {