File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -129,10 +129,11 @@ jobs:
129
129
cd tests/e2e/dist
130
130
export SETUP_TEST="tests/setup.js"
131
131
export TEST_FILES=$(circleci tests glob "tests/**/*.e2e.js" | circleci tests split --split-by=timings)
132
- export TEST_FILES="$SETUP_TEST\n$TEST_FILES"
133
- echo "Running tests: $TEST_FILES"
132
+ # Combine setup test and other tests into an array
133
+ export COMBINED_TEST_FILES=$(echo -e "$SETUP_TEST\n$TEST_FILES" | tr '\n' ' ')
134
+ echo "Running tests: $COMBINED_TEST_FILES"
134
135
cd ../../..
135
- .circleci/e2e/test.app.sh
136
+ TEST_FILES="$COMBINED_TEST_FILES" .circleci/e2e/test.app.sh
136
137
- when :
137
138
condition :
138
139
equal : [ true, << parameters.report >> ]
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ module.exports = {
5
5
delay : false ,
6
6
diff : true ,
7
7
file : [ './tests/setup.js' ] ,
8
+ fullTrace : true ,
8
9
package : './package.json' ,
9
10
parallel : false ,
10
11
recursive : false ,
@@ -20,7 +21,7 @@ module.exports = {
20
21
toConsole : false ,
21
22
} ,
22
23
} ,
23
- retries : 1 ,
24
+ retries : 3 ,
24
25
timeout : 100_000 ,
25
26
ui : 'bdd' ,
26
27
}
You can’t perform that action at this time.
0 commit comments