/** * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ #import #import #import #import "RCTAssert.h" @interface IntegrationTestsTests : XCTestCase @end @implementation IntegrationTestsTests { RCTTestRunner *_runner; } - (void)setUp { _runner = [[RCTTestRunner alloc] initWithApp:@"IntegrationTests/IntegrationTestsApp"]; } - (void)testTheTester { [_runner runTest:@"IntegrationTestHarnessTest"]; } - (void)testTheTester_waitOneFrame { [_runner runTest:@"IntegrationTestHarnessTest" initialProps:@{@"waitOneFrame": @YES} expectErrorBlock:nil]; } - (void)testTheTester_ExpectError { [_runner runTest:@"IntegrationTestHarnessTest" initialProps:@{@"shouldThrow": @YES} expectErrorRegex:[NSRegularExpression regularExpressionWithPattern:@"because shouldThrow" options:0 error:nil]]; } - (void)testTimers { [_runner runTest:@"TimersTest"]; } - (void)testAsyncStorage { [_runner runTest:@"AsyncStorageTest"]; } @end