cleanUp static method
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
}
}
}