-
Notifications
You must be signed in to change notification settings - Fork 24.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disabled unit tests that need yoga libs when running
Reviewed By: hramos Differential Revision: D4346826 fbshipit-source-id: 70855a44b27d25e49615914a845cf04fc63e322d
- Loading branch information
Showing
2 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,9 @@ rn_robolectric_test( | |
name = 'uimanager', | ||
# Please change the contact to the oncall of your team | ||
contacts = ['[email protected]'], | ||
srcs = glob(['**/*.java']), | ||
# TODO Disabled temporarily until Yoga linking is fixed t14964130 | ||
# srcs = glob(['**/*.java']), | ||
srcs = ['SimpleViewPropertyTest.java'], | ||
deps = [ | ||
YOGA_TARGET, | ||
react_native_dep('libraries/fbcore/src/test/java/com/facebook/powermock:powermock'), | ||
|
@@ -30,7 +32,3 @@ rn_robolectric_test( | |
'PUBLIC' | ||
], | ||
) | ||
|
||
project_config( | ||
test_target = ':uimanager', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,9 @@ rn_robolectric_test( | |
name = 'views', | ||
# Please change the contact to the oncall of your team | ||
contacts = ['[email protected]'], | ||
srcs = glob(['**/*.java']), | ||
# TODO Disabled temporarily until Yoga linking is fixed t14964130 | ||
# srcs = glob(['**/*.java']), | ||
srcs = glob(['image/*.java']), | ||
deps = [ | ||
YOGA_TARGET, | ||
react_native_dep('libraries/fbcore/src/test/java/com/facebook/powermock:powermock'), | ||
|
@@ -32,7 +34,3 @@ rn_robolectric_test( | |
react_native_tests_target('java/com/facebook/react/bridge:testhelpers'), | ||
], | ||
) | ||
|
||
project_config( | ||
test_target = ':views', | ||
) |