Disabled unit tests that need yoga libs when running

Reviewed By: hramos

Differential Revision: D4346826

fbshipit-source-id: 70855a44b27d25e49615914a845cf04fc63e322d
This commit is contained in:
Konstantin Raev 2016-12-19 11:36:42 -08:00 committed by Facebook Github Bot
parent ede04abf8f
commit 709a441ecf
2 changed files with 6 additions and 4 deletions

View File

@ -4,7 +4,9 @@ rn_robolectric_test(
name = 'uimanager',
# Please change the contact to the oncall of your team
contacts = ['oncall+fbandroid_sheriff@xmail.facebook.com'],
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,4 +32,3 @@ rn_robolectric_test(
'PUBLIC'
],
)

View File

@ -4,7 +4,9 @@ rn_robolectric_test(
name = 'views',
# Please change the contact to the oncall of your team
contacts = ['oncall+fbandroid_sheriff@xmail.facebook.com'],
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,4 +34,3 @@ rn_robolectric_test(
react_native_tests_target('java/com/facebook/react/bridge:testhelpers'),
],
)