Skip to content

Commit 4b7a901

Browse files
committed
Increase mocha timeout.
1 parent 2433d85 commit 4b7a901

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/e2e-kitchensink.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,15 @@ E2E_URL="http://localhost:3001" \
151151
CI=true NODE_PATH=src \
152152
NODE_ENV=development \
153153
BABEL_ENV=test \
154-
node_modules/.bin/mocha --compilers js:@babel/register --require @babel/polyfill integration/*.test.js
154+
node_modules/.bin/mocha --timeout 30000 --compilers js:@babel/register --require @babel/polyfill integration/*.test.js
155155
# Test "production" environment
156156
E2E_FILE=./build/index.html \
157157
CI=true \
158158
NODE_PATH=src \
159159
NODE_ENV=production \
160160
BABEL_ENV=test \
161161
PUBLIC_URL=http://www.example.org/spa/ \
162-
node_modules/.bin/mocha --compilers js:@babel/register --require @babel/polyfill integration/*.test.js
162+
node_modules/.bin/mocha --timeout 30000 --compilers js:@babel/register --require @babel/polyfill integration/*.test.js
163163

164164
# Cleanup
165165
cleanup

0 commit comments

Comments
 (0)