findTestsForAreas method
Implementation
List<AFScreenPrototype> findTestsForAreas(List<String> areas) {
final results = <AFScreenPrototype>[];
_addTestsForTestSet(AFibF.g.primaryUITests, areas, results);
for(final library in AFibF.g.thirdPartyUITests.values) {
_addTestsForTestSet(library, areas, results);
}
return results;
}