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
+1 -2
View File
@@ -18,7 +18,7 @@ void main() {
test('discovers symbols and passes the complete upload request to the plugin', () async {
final symbolRoot = Directory(path.join(repository.path, 'debug-info', 'linux-x64'))..createSync(recursive: true);
final archive = File(path.join(symbolRoot.path, 'symbols.zip'))..writeAsStringSync('symbols');
File(path.join(symbolRoot.path, 'symbols.zip')).writeAsStringSync('symbols');
final symbolMap = File(path.join(symbolRoot.path, 'obfuscation.map.json'))..writeAsStringSync('{}');
late List<String> uploadArguments;
late Map<String, String> uploadEnvironment;
@@ -42,7 +42,6 @@ void main() {
);
expect(result, 0);
expect(archive.existsSync(), isTrue);
expect(uploadWorkingDirectory, path.normalize(path.absolute(repository.path)));
expect(uploadEnvironment['SENTRY_AUTH_TOKEN'], 'admin-token');
expect(uploadEnvironment['SENTRY_LOG_LEVEL'], 'info');