mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 06:38:13 +00:00
Summary: Fixes https://github.com/facebook/react-native/issues/23108. The TabBarIOS component is scheduled to be removed from core any day now, so it's OK to remove it from our test suite. Changelog: ---------- [iOS] [Removed] - Remove TabBarExample SST Pull Request resolved: https://github.com/facebook/react-native/pull/23206 Differential Revision: D13864064 Pulled By: hramos fbshipit-source-id: f65da75e2789d384dcd713a27ca5528f0faa7526
55 lines
1.2 KiB
Objective-C
55 lines
1.2 KiB
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <XCTest/XCTest.h>
|
|
|
|
#import <RCTTest/RCTTestRunner.h>
|
|
|
|
@interface RNTesterSnapshotTests : XCTestCase
|
|
{
|
|
RCTTestRunner *_runner;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation RNTesterSnapshotTests
|
|
|
|
- (void)setUp
|
|
{
|
|
_runner = RCTInitRunnerForApp(@"RNTester/js/RNTesterApp.ios", nil, nil);
|
|
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 10) {
|
|
_runner.testSuffix = [NSString stringWithFormat:@"-iOS%d", UIDevice.currentDevice.systemVersion.intValue];
|
|
}
|
|
_runner.recordMode = NO;
|
|
}
|
|
|
|
#define RCT_TEST(name) \
|
|
- (void)test##name \
|
|
{ \
|
|
[_runner runTest:_cmd module:@#name]; \
|
|
}
|
|
|
|
RCT_TEST(ViewExample)
|
|
RCT_TEST(LayoutExample)
|
|
RCT_TEST(ARTExample)
|
|
RCT_TEST(ScrollViewExample)
|
|
RCT_TEST(TextExample)
|
|
#if !TARGET_OS_TV
|
|
// No switch or slider available on tvOS
|
|
RCT_TEST(SwitchExample)
|
|
RCT_TEST(SliderExample)
|
|
#endif
|
|
|
|
- (void)testZZZNotInRecordMode
|
|
{
|
|
XCTAssertFalse(_runner.recordMode, @"Don't forget to turn record mode back to off");
|
|
}
|
|
|
|
@end
|