"npm test" fails in two places
mlolson opened this issue · 2 comments
mlolson commented
I'm seeing tests fail in two places.
-
The react-server-cli stdout tests in
commands.js
fail because React v15.6.1 throws a deprecation warning regarding proptypes. See: https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html -
react-server-integration tests in InternalServerErrorSpec fail because the tests expect a text response: '[object Object]', but the end point actually returns html that looks like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>[object Object]</pre>
</body>
</html>
Repro:
-
Clone react-server,
-
Run
npm install
-
npm test
mlolson commented
Yes I believe so.