We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17e2e0 commit bdfb56cCopy full SHA for bdfb56c
dev/bots/test.dart
@@ -482,7 +482,7 @@ Future<void> _runAndroidPreviewIntegrationToolTests() async {
482
final List<String> allTests = Directory(path.join(_toolsPath, 'test', 'android_preview_integration.shard'))
483
.listSync(recursive: true).whereType<File>()
484
.map<String>((FileSystemEntity entry) => path.relative(entry.path, from: _toolsPath))
485
- .toList();
+ .where((String testPath) => path.basename(testPath).endsWith('_test.dart')).toList();
486
487
await _runDartTest(
488
_toolsPath,
0 commit comments