Skip to content

Commit 7ff4c21

Browse files
javachemeta-codesync[bot]
authored andcommitted
Remove references to integration/runner (#55342)
Summary: Pull Request resolved: #55342 This was the old fantom location and no longer used. Changelog: [Internal] Reviewed By: zeyap Differential Revision: D91680127 fbshipit-source-id: d0015ed1668065487c156eabe535e35e75c52d3f
1 parent 0bb3190 commit 7ff4c21

2 files changed

Lines changed: 2 additions & 23 deletions

File tree

scripts/shared/babelRegister.js

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@
88
* @format
99
*/
1010

11-
const {
12-
PACKAGES_DIR,
13-
PRIVATE_DIR,
14-
RN_INTEGRATION_TESTS_RUNNER_DIR,
15-
SCRIPTS_DIR,
16-
} = require('./consts');
11+
const {PACKAGES_DIR, PRIVATE_DIR, SCRIPTS_DIR} = require('./consts');
1712

1813
let isRegisteredForMonorepo = false;
1914

@@ -42,12 +37,7 @@ function registerForMonorepo() {
4237
require('@fb-tools/babel-register');
4338
} else {
4439
const {register} = require('metro-babel-register');
45-
register([
46-
PACKAGES_DIR,
47-
PRIVATE_DIR,
48-
SCRIPTS_DIR,
49-
RN_INTEGRATION_TESTS_RUNNER_DIR,
50-
]);
40+
register([PACKAGES_DIR, PRIVATE_DIR, SCRIPTS_DIR]);
5141
}
5242

5343
isRegisteredForMonorepo = true;

scripts/shared/consts.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,11 @@ const RN_TESTER_DIR /*: string */ = path.join(
4949
'rn-tester',
5050
);
5151

52-
/**
53-
* The absolute path to the RN integration tests runner directory.
54-
*/
55-
const RN_INTEGRATION_TESTS_RUNNER_DIR /*: string */ = path.join(
56-
REPO_ROOT,
57-
'jest',
58-
'integration',
59-
'runner',
60-
);
61-
6252
module.exports = {
6353
PACKAGES_DIR,
6454
PRIVATE_DIR,
6555
REACT_NATIVE_PACKAGE_DIR,
6656
REPO_ROOT,
6757
RN_TESTER_DIR,
6858
SCRIPTS_DIR,
69-
RN_INTEGRATION_TESTS_RUNNER_DIR,
7059
};

0 commit comments

Comments
 (0)