Compare commits

...

20 Commits

Author SHA1 Message Date
Dariusz Majcherczyk
f6bbb576ac
chore: update test 2024-03-07 19:30:04 +01:00
Dariusz Majcherczyk
1a29c9c5f8
chore: remove test changes 2024-03-07 19:05:32 +01:00
Dariusz Majcherczyk
a907cb2948
chore: test changes for gov 2024-03-07 18:41:56 +01:00
Dariusz Majcherczyk
4b53339368
chore: add log 2024-03-07 18:33:01 +01:00
Dariusz Majcherczyk
32e612648f
chore: change projects 2024-03-07 18:19:47 +01:00
Dariusz Majcherczyk
8cc7f587b0
chore: remove if 2024-03-07 18:10:36 +01:00
Dariusz Majcherczyk
1dcecb30ee
chore: separate projects 2024-03-07 18:06:59 +01:00
Dariusz Majcherczyk
b7ed5a22e1
chore: update skip 2024-03-07 17:53:01 +01:00
Dariusz Majcherczyk
bbd3371412
chore: skip check-e2e-needed 2024-03-07 17:41:47 +01:00
Dariusz Majcherczyk
011badc09e
chore: check if project exist 2024-03-07 17:22:23 +01:00
Dariusz Majcherczyk
5d94f5ec15
chore: add check for empty array 2024-03-07 16:50:27 +01:00
Dariusz Majcherczyk
9c033d7ad2
chore: add echo 2024-03-07 16:38:45 +01:00
Dariusz Majcherczyk
3b3bfa781e
chore: add new condition 2024-03-07 16:27:37 +01:00
Dariusz Majcherczyk
065e7f546f
chore: update if 2024-03-07 16:20:52 +01:00
Dariusz Majcherczyk
6a0d631663
chore: move if 2024-03-07 16:06:14 +01:00
Dariusz Majcherczyk
68a8186623
chore: change condition 2024-03-07 15:58:58 +01:00
Dariusz Majcherczyk
ebc4913832
chore: add logs 2024-03-07 15:22:46 +01:00
Dariusz Majcherczyk
973fa305f1
chore: print logs 2024-03-07 14:36:20 +01:00
Dariusz Majcherczyk
91a373056c
chore: change exit code 2024-03-07 14:25:44 +01:00
Dariusz Majcherczyk
126da12201
chore(trading): check if 2024-03-07 13:41:35 +01:00
2 changed files with 4 additions and 3 deletions

View File

@ -196,9 +196,9 @@ jobs:
cypress:
needs: [build-sources, check-e2e-needed]
name: '(CI) cypress'
if: ${{ needs.check-e2e-needed.outputs.run-tests == 'true' }}
uses: ./.github/workflows/cypress-run.yml
secrets: inherit
if: needs.check-e2e-needed.outputs.run-tests == 'true' && (contains(needs.build-sources.outputs.projects, 'governance') || contains(needs.build-sources.outputs.projects, 'explorer'))
with:
projects: ${{ needs.build-sources.outputs.projects-e2e }}
tags: '@smoke'
@ -287,8 +287,9 @@ jobs:
steps:
- run: |
result="${{ needs.cypress.result }}"
echo "Result: $result"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 0
exit 1
fi

View File

@ -153,7 +153,7 @@ context('Home Page - verify elements on page', { tags: '@smoke' }, function () {
.invoke('text')
.should('not.eq', currentBlockHeight);
});
cy.getByTestId('subscription-cell').should('have.text', 'Yes');
cy.getByTestId('subscription-cell').should('be.be.visible');
});
cy.getByTestId('connect').should('be.disabled');
cy.getByTestId('node-url-custom').click({ force: true });