Skip to content

Commit ac7031f

Browse files
committed
Increase mocha timeout in kitchensink-eject tests.
1 parent dd63e72 commit ac7031f

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ script:
1818
- 'if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
1919
- 'if [ $TEST_SUITE = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
2020
- 'if [ $TEST_SUITE = "kitchensink-eject" ]; then tasks/e2e-kitchensink-eject.sh; fi'
21-
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
2221
- 'if [ $TEST_SUITE = "monorepos" ]; then tasks/e2e-monorepos.sh; fi'
22+
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
2323
env:
2424
matrix:
2525
- TEST_SUITE=simple
@@ -31,7 +31,3 @@ matrix:
3131
include:
3232
- node_js: 4
3333
env: TEST_SUITE=old-node
34-
- node_js: 6
35-
env: TEST_SUITE=kitchensink
36-
- node_js: 6
37-
env: TEST_SUITE=kitchensink-eject

appveyor.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ environment:
88
test_suite: "installs"
99
- nodejs_version: 10
1010
test_suite: "kitchensink"
11-
- nodejs_version: 8
11+
- nodejs_version: 10
1212
test_suite: "kitchensink-eject"
13-
- nodejs_version: 8
13+
- nodejs_version: 10
1414
test_suite: "monorepos"
1515
- nodejs_version: 8
1616
test_suite: "simple"
1717
- nodejs_version: 8
1818
test_suite: "installs"
1919
- nodejs_version: 8
2020
test_suite: "kitchensink"
21-
- nodejs_version: 6
21+
- nodejs_version: 8
2222
test_suite: "kitchensink-eject"
23-
- nodejs_version: 6
23+
- nodejs_version: 8
2424
test_suite: "monorepos"
2525
cache:
2626
- node_modules -> appveyor.cleanup-cache.txt

tasks/e2e-kitchensink-eject.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ E2E_URL="http://localhost:3002" \
159159
CI=true NODE_PATH=src \
160160
NODE_ENV=development \
161161
BABEL_ENV=test \
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
# Test "production" environment
165165
E2E_FILE=./build/index.html \
@@ -168,7 +168,7 @@ E2E_FILE=./build/index.html \
168168
BABEL_ENV=test \
169169
NODE_PATH=src \
170170
PUBLIC_URL=http://www.example.org/spa/ \
171-
node_modules/.bin/mocha --compilers js:@babel/register --require @babel/polyfill integration/*.test.js
171+
node_modules/.bin/mocha --timeout 30000 --compilers js:@babel/register --require @babel/polyfill integration/*.test.js
172172

173173
# Cleanup
174174
cleanup

0 commit comments

Comments
 (0)