Any leads how can we use Snapshot testing to test darkmode implementation? Or any other testing strategy for dark mode on iOS.
When XCUITest is one of the options along with XCTest (unit-test). The problem with UITest in dark mode means for every app flow it needs to be run twice.
Will Unittest cases be enough to suffice testing needs for dark mode? Can you think of any use case which won't be covered using only unit testing for dark mode?
