addTags function

Future<void> addTags(
  1. Directory testDir,
  2. List<String> tags
)

Add tags to test directory

Implementation

Future<void> addTags(Directory testDir, List<String> tags) async {
  for (final tag in tags) {
    await addTag(testDir, tag);
  }
}