We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f131ae2 commit 0e5b924Copy full SHA for 0e5b924
1 file changed
cypress/e2e/health-page.cy.ts
@@ -10,6 +10,9 @@ beforeEach(() => {
10
11
describe('Health Page > Status Tab', () => {
12
it('should pass accessibility tests', () => {
13
+ cy.intercept('GET', '/server/actuator/health').as('status');
14
+ cy.wait('@status');
15
+
16
cy.get('a[data-test="health-page.status-tab"]').click();
17
// Page must first be visible
18
cy.get('ds-health-page').should('be.visible');
@@ -33,6 +36,8 @@ describe('Health Page > Status Tab', () => {
33
36
34
37
describe('Health Page > Info Tab', () => {
35
38
39
+ cy.intercept('GET', '/server/actuator/info').as('info');
40
+ cy.wait('@info');
41
42
cy.get('a[data-test="health-page.info-tab"]').click();
43
0 commit comments