Skip to content

Commit a72e010

Browse files
committed
Uncomment failing CircleCI check
1 parent 36e1987 commit a72e010

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

scripts/run-ci-e2e-tests.js

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -280,16 +280,12 @@ try {
280280
exitCode = 1;
281281
throw Error(exitCode);
282282
}
283-
// [TODO(macOS GH#949)
284-
// Comment out failing test to unblock CI
285-
// It seems It's running the flow checks against react-native-macos 0.63 instead of what is in the repo causing a failure
286-
// describe('Test: Flow check');
287-
// if (exec(`${ROOT}/node_modules/.bin/flow check`).code) {
288-
// echo('Flow check failed.');
289-
// exitCode = 1;
290-
// throw Error(exitCode);
291-
// }
292-
// ]TODO(macOS GH#949)
283+
describe('Test: Flow check');
284+
if (exec(`${ROOT}/node_modules/.bin/flow check`).code) {
285+
echo('Flow check failed.');
286+
exitCode = 1;
287+
throw Error(exitCode);
288+
}
293289
}
294290
exitCode = 0;
295291
} finally {

0 commit comments

Comments
 (0)