Skip to content

Commit 9d51911

Browse files
author
Adam Tackett
committed
cypress fix test
Signed-off-by: Adam Tackett <[email protected]>
1 parent 58cb07f commit 9d51911

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.cypress/integration/trace_analytics_test/trace_analytics_services.spec.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('Testing services table', () => {
9595
});
9696

9797
describe('Testing service view empty state and invalid url', () => {
98-
it('Renders service view empty state', () => {
98+
it('Renders service view empty state and invalid url', () => {
9999
cy.visit(`app/observability-traces#/services/${SERVICE_NAME}`, {
100100
onBeforeLoad: (win) => {
101101
win.sessionStorage.clear();
@@ -104,9 +104,8 @@ describe('Testing service view empty state and invalid url', () => {
104104
cy.get('[data-test-subj="globalLoadingIndicator"]').should('not.exist');
105105
cy.contains('frontend-client').should('exist');
106106
cy.contains('No matches').should('exist');
107-
});
108107

109-
it('Renders service view invalid url state', () => {
108+
// Renders service view invalid url state
110109
cy.visit(`app/observability-traces#/services?serviceId=${INVALID_URL}`, {
111110
onBeforeLoad: (win) => {
112111
win.sessionStorage.clear();

0 commit comments

Comments
 (0)