findTestsForAreas method

List<AFScreenPrototype> findTestsForAreas(
  1. List<String> areas
)

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;
}