File tree 3 files changed +8
-21
lines changed
3 files changed +8
-21
lines changed Original file line number Diff line number Diff line change 5
5
mkdir -p tests/e2e/remote
6
6
7
7
# Run RTE (Redis Test Environment)
8
- # docker compose -f tests/e2e/rte.docker-compose.yml build
9
- # docker compose -f tests/e2e/rte.docker-compose.yml up --force-recreate -d -V
10
- # ./tests/e2e/wait-for-redis.sh localhost 12000
8
+ docker compose -f tests/e2e/rte.docker-compose.yml build
9
+ docker compose -f tests/e2e/rte.docker-compose.yml up --force-recreate -d -V
10
+ ./tests/e2e/wait-for-redis.sh localhost 12000
11
11
12
12
# Run tests
13
- # RI_SOCKETS_CORS=true xvfb-run --auto-servernum yarn --cwd tests/e2e dotenv -e .ci.env yarn --cwd tests/e2e test:ci
14
13
RI_SOCKETS_CORS=true \
15
- TEST_FILES=dist/tests/settings/settings.e2e.js \
16
14
xvfb-run --auto-servernum \
17
15
yarn --cwd tests/e2e dotenv -e .ci.env yarn --cwd tests/e2e test:ci
Original file line number Diff line number Diff line change 29
29
fail-fast : false
30
30
matrix :
31
31
# Number of threads to run tests
32
- # parallel: [0, 1, 2, 3]
33
- parallel : [0]
32
+ parallel : [0, 1, 2, 3]
33
+ # parallel: [0]
34
34
35
35
steps :
36
36
- uses : actions/checkout@v4
@@ -130,17 +130,6 @@ jobs:
130
130
list-suites : ' failed'
131
131
fail-on-error : ' false'
132
132
133
- - name : Generate mocha test results for ${{ matrix.parallel }}th node
134
- uses : dorny/test-reporter@v1
135
- if : always()
136
- with :
137
- name : ' Test results: E2E (linux) ${{ matrix.parallel }}th node'
138
- path : tests/e2e/mochawesome-report/*.json
139
- reporter : mocha-json
140
- list-tests : ' failed'
141
- list-suites : ' failed'
142
- fail-on-error : ' false'
143
-
144
133
# merge-artifacts:
145
134
# runs-on: ubuntu-latest
146
135
# needs: e2e-linux-tests
Original file line number Diff line number Diff line change @@ -70,17 +70,17 @@ describe('Agreements Verification', () => {
70
70
// Verify that Submit button disabled by default if EULA not accepted
71
71
expect (
72
72
await eulaView . isElementDisabled ( eulaView . submitButton , 'class' ) ,
73
- ) . eql ( false , 'Submut button not disabled by default' )
73
+ ) . eql ( true , 'Submut button not disabled by default' )
74
74
} )
75
75
76
76
it ( 'Verify that when user checks "Use recommended settings" option on EULA screen, all options (except Licence Terms) are checked' , async ( ) => {
77
77
// Verify options unchecked before enabling Use recommended settings
78
78
expect (
79
79
await CheckboxActions . getCheckboxState ( eulaView . analyticsCheckbox ) ,
80
- ) . eql ( true , 'Enable Analytics switcher is checked' )
80
+ ) . eql ( false , 'Enable Analytics switcher is checked' )
81
81
expect (
82
82
await CheckboxActions . getCheckboxState ( eulaView . useRecommendedCheckbox ) ,
83
- ) . eql ( true , 'Use recommended settings switcher is checked' )
83
+ ) . eql ( false , 'Use recommended settings switcher is checked' )
84
84
expect ( await CheckboxActions . getCheckboxState ( eulaView . eulaCheckbox ) ) . eql (
85
85
false ,
86
86
'EULA switcher is checked' ,
You can’t perform that action at this time.
0 commit comments