From fee581d809173bdd7586a92c24180f57c7f57690 Mon Sep 17 00:00:00 2001 From: Jace Hensley Date: Mon, 19 Jun 2017 17:15:52 -0700 Subject: [PATCH] Add comment explaining why files are being listed UIP-1638 --- test/integration/strong_mode_test.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration/strong_mode_test.dart b/test/integration/strong_mode_test.dart index 2c2b51e0b..7c1b2f1af 100644 --- a/test/integration/strong_mode_test.dart +++ b/test/integration/strong_mode_test.dart @@ -11,6 +11,7 @@ const String strongModeProject = 'test_fixtures/strong_mode'; /// Runs the dart analzyer task for the given project. Future analyzeProject(String projectPath) async { + // Won't work unless all files are listed, for some reason. var files = [] ..addAll(new Directory(projectPath).listSync() .where((e) => FileSystemEntity.isFileSync(e.path) && e.path.endsWith('.dart'))