cleanUp static method

Future<void> cleanUp(
  1. List<String> boxNames
)

Clean up all test boxes by deleting them from disk.

Implementation

static Future<void> cleanUp(List<String> boxNames) async {
  for (final name in boxNames) {
    try {
      await Rift.deleteBoxFromDisk(name);
    } catch (_) {
      // Ignore errors during cleanup
    }
  }
}