Enable ReactKit tests on iOS9
Reviewed By: majak Differential Revision: D2565213 fb-gh-sync-id: 6a70f7e7403b396af8d10b844c5e41ea472ab9b5
This commit is contained in:
parent
6a5b61eb88
commit
68c52814d6
|
@ -36,7 +36,7 @@
|
|||
#endif
|
||||
|
||||
NSOperatingSystemVersion version = [NSProcessInfo processInfo].operatingSystemVersion;
|
||||
RCTAssert(version.majorVersion == 8 || version.minorVersion >= 3, @"Tests should be run on iOS 8.3+, found %zd.%zd.%zd", version.majorVersion, version.minorVersion, version.patchVersion);
|
||||
RCTAssert((version.majorVersion == 8 && version.minorVersion >= 3) || version.majorVersion >= 9, @"Tests should be run on iOS 8.3+, found %zd.%zd.%zd", version.majorVersion, version.minorVersion, version.patchVersion);
|
||||
_runner = RCTInitRunnerForApp(@"Examples/UIExplorer/UIExplorerIntegrationTests/js/IntegrationTestsApp", nil);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue