Skip to content

Commit 54495c3

Browse files
committed
try
1 parent c82d85f commit 54495c3

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/tests-e2e-linux.yml

+11
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,17 @@ jobs:
130130
list-suites: 'failed'
131131
fail-on-error: 'false'
132132

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+
133144
# merge-artifacts:
134145
# runs-on: ubuntu-latest
135146
# needs: e2e-linux-tests

tests/e2e/src/tests/setup.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ describe('Agreements Verification', () => {
5252
await eulaView.waitForElementVisibility(eulaView.eulaPageContainer),
5353
).eql(true, 'User Agreements is not shown')
5454
// Verify that I still has agreements popup & cannot add a database
55-
await eulaView.switchBack()
55+
// await eulaView.switchBack()
5656
expect(await eulaView.isElementDisplayed(treeView.addDatabaseBtn)).eql(
5757
false,
5858
'User can add a database',

0 commit comments

Comments
 (0)