File tree 3 files changed +7
-11
lines changed
3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ script:
18
18
- ' if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
19
19
- ' if [ $TEST_SUITE = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
20
20
- ' 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'
22
21
- ' if [ $TEST_SUITE = "monorepos" ]; then tasks/e2e-monorepos.sh; fi'
22
+ - ' if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
23
23
env :
24
24
matrix :
25
25
- TEST_SUITE=simple
@@ -31,7 +31,3 @@ matrix:
31
31
include :
32
32
- node_js : 4
33
33
env : TEST_SUITE=old-node
34
- - node_js : 6
35
- env : TEST_SUITE=kitchensink
36
- - node_js : 6
37
- env : TEST_SUITE=kitchensink-eject
Original file line number Diff line number Diff line change @@ -8,19 +8,19 @@ environment:
8
8
test_suite : " installs"
9
9
- nodejs_version : 10
10
10
test_suite : " kitchensink"
11
- - nodejs_version : 8
11
+ - nodejs_version : 10
12
12
test_suite : " kitchensink-eject"
13
- - nodejs_version : 8
13
+ - nodejs_version : 10
14
14
test_suite : " monorepos"
15
15
- nodejs_version : 8
16
16
test_suite : " simple"
17
17
- nodejs_version : 8
18
18
test_suite : " installs"
19
19
- nodejs_version : 8
20
20
test_suite : " kitchensink"
21
- - nodejs_version : 6
21
+ - nodejs_version : 8
22
22
test_suite : " kitchensink-eject"
23
- - nodejs_version : 6
23
+ - nodejs_version : 8
24
24
test_suite : " monorepos"
25
25
cache :
26
26
- node_modules -> appveyor.cleanup-cache.txt
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ E2E_URL="http://localhost:3002" \
159
159
CI=true NODE_PATH=src \
160
160
NODE_ENV=development \
161
161
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
163
163
164
164
# Test "production" environment
165
165
E2E_FILE=./build/index.html \
@@ -168,7 +168,7 @@ E2E_FILE=./build/index.html \
168
168
BABEL_ENV=test \
169
169
NODE_PATH=src \
170
170
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
172
172
173
173
# Cleanup
174
174
cleanup
You can’t perform that action at this time.
0 commit comments