Disabled jest tests in e2e

Summary:
Currently too much noise is coming because of broken tests
Closes https://github.com/facebook/react-native/pull/10083

Differential Revision: D3919029

Pulled By: davidaurelio

fbshipit-source-id: e75bb38d4be1c8427dfa0c3f6df60d04582ddb2c
This commit is contained in:
Konstantin Raev 2016-09-24 06:12:02 -07:00 committed by Facebook Github Bot 1
parent b2821c3345
commit 3a2bb3dbc5
1 changed files with 7 additions and 5 deletions

View File

@ -200,11 +200,13 @@ try {
exitCode = 1;
throw Error(exitCode);
}
if (exec(`npm test`).code) {
echo('Jest test failure');
exitCode = 1;
throw Error(exitCode);
}
// Temporarily removed jest test until a RN fix to jest lands in a couple of days
// ping @bestander after 27.09.2016 if you see this
// if (exec(`npm test`).code) {
// echo('Jest test failure');
// exitCode = 1;
// throw Error(exitCode);
// }
}
exitCode = 0;