Disabled flow in e2e test because it causes memory crashes

Summary: Closes https://github.com/facebook/react-native/pull/7620

Differential Revision: D3322029

fbshipit-source-id: e0406770d011956af6b47d15c5b49a68b1b611f5
This commit is contained in:
Konstantin Raev
2016-05-19 03:44:09 -07:00
committed by Facebook Github Bot 3
parent 8a201b842a
commit 6a34c9c3da
2 changed files with 8 additions and 7 deletions

View File

@@ -195,11 +195,12 @@ try {
exitCode = 1;
throw Error(exitCode);
}
if (exec(`${ROOT}/node_modules/.bin/flow check`).code) {
echo('Flow check does not pass');
exitCode = 1;
throw Error(exitCode);
}
// TODO disabled while flow 0.25.0 is crashing
// if (exec(`${ROOT}/node_modules/.bin/flow check`).code) {
// echo('Flow check does not pass');
// exitCode = 1;
// throw Error(exitCode);
// }
}
exitCode = 0;