test: remove redundant coverage and shorten timers

This commit is contained in:
edde746
2026-07-13 02:15:03 +02:00
parent c4e9fa1650
commit e6e7d8cdfd
63 changed files with 90 additions and 1760 deletions
-6
View File
@@ -175,11 +175,5 @@ void main() {
expect(formatFullDate('not-a-date'), 'not-a-date');
expect(formatFullDate(''), '');
});
test('does not throw for a valid ISO date', () {
// DateFormat may fall back to raw input if intl date symbols aren't
// initialised in the test runner — just verify no crash and string output.
expect(formatFullDate('2024-01-15'), isA<String>());
});
});
}