Retrieves the current test name formatted for file naming.
@override String get currentTestName { final testName = Invoker.current?.liveTest.individualName; return testName?.replaceAll(' ', '_').toLowerCase() ?? ''; }