From a1858c7b383ac003a751e85257432305cdd3e73b Mon Sep 17 00:00:00 2001
From: Joe Haddad <timer150@gmail.com>
Date: Mon, 27 Feb 2017 18:39:41 -0500
Subject: [PATCH] Fix e2e-simple (cont.)

---
 tasks/e2e-simple.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tasks/e2e-simple.sh b/tasks/e2e-simple.sh
index 7782fe849..855172c7d 100755
--- a/tasks/e2e-simple.sh
+++ b/tasks/e2e-simple.sh
@@ -71,6 +71,11 @@ grep -v "lerna bootstrap" package.json > temp && mv temp package.json
 npm install
 mv package.json.bak package.json
 
+# We need to install create-react-app deps to test it
+cd "$root_path"/packages/create-react-app
+npm install
+cd "$root_path"
+
 # If the node version is < 4, the script should just give an error.
 if [[ `node --version | sed -e 's/^v//' -e 's/\..*//g'` -lt 4 ]]
 then
-- 
GitLab