@@ -27,7 +27,7 @@ describe('Dump test data', () => {
27
27
cy . request ( mapping_url ) . then ( ( response ) => {
28
28
cy . request ( {
29
29
method : 'POST' ,
30
- form : true ,
30
+ // form: true,
31
31
url : 'api/console/proxy' ,
32
32
headers : {
33
33
'content-type' : 'application/json;charset=UTF-8' ,
@@ -44,7 +44,7 @@ describe('Dump test data', () => {
44
44
cy . request ( data_url ) . then ( ( response ) => {
45
45
cy . request ( {
46
46
method : 'POST' ,
47
- form : true ,
47
+ // form: true,
48
48
url : 'api/console/proxy' ,
49
49
headers : {
50
50
'content-type' : 'application/json;charset=UTF-8' ,
@@ -67,7 +67,7 @@ describe('Dump test data', () => {
67
67
68
68
describe ( 'Testing dashboard table empty state' , ( ) => {
69
69
beforeEach ( ( ) => {
70
- cy . visit ( 'app/observability-dashboards#/trace_analytics/home ' , {
70
+ cy . visit ( 'app/observability-traces#/ ' , {
71
71
onBeforeLoad : ( win ) => {
72
72
win . sessionStorage . clear ( ) ;
73
73
} ,
@@ -83,7 +83,7 @@ describe('Testing dashboard table empty state', () => {
83
83
84
84
describe ( 'Testing dashboard table' , ( ) => {
85
85
beforeEach ( ( ) => {
86
- cy . visit ( 'app/observability-dashboards#/trace_analytics/home ' , {
86
+ cy . visit ( 'app/observability-traces#/ ' , {
87
87
onBeforeLoad : ( win ) => {
88
88
win . sessionStorage . clear ( ) ;
89
89
} ,
@@ -151,7 +151,7 @@ describe('Testing dashboard table', () => {
151
151
152
152
describe ( 'Testing plots' , ( ) => {
153
153
beforeEach ( ( ) => {
154
- cy . visit ( 'app/observability-dashboards#/trace_analytics/home ' , {
154
+ cy . visit ( 'app/observability-traces#/ ' , {
155
155
onBeforeLoad : ( win ) => {
156
156
win . sessionStorage . clear ( ) ;
157
157
} ,
@@ -186,7 +186,7 @@ describe('Testing plots', () => {
186
186
187
187
describe ( 'Latency by trace group table' , ( ) => {
188
188
beforeEach ( ( ) => {
189
- cy . visit ( 'app/observability-dashboards#/trace_analytics/home ' , {
189
+ cy . visit ( 'app/observability-traces#/ ' , {
190
190
onBeforeLoad : ( win ) => {
191
191
win . sessionStorage . clear ( ) ;
192
192
} ,
@@ -215,17 +215,17 @@ describe('Latency by trace group table', () =>{
215
215
} ) ;
216
216
217
217
it ( 'Verify tooltips in Latency by trace group table' , ( ) => {
218
- cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.euiIcon-isLoaded. eui-alignTop' ) . eq ( 0 ) . trigger ( 'mouseover' ) ;
218
+ cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.eui-alignTop' ) . eq ( 0 ) . trigger ( 'mouseover' ) ;
219
219
cy . contains ( 'Traces of all requests that share a common API and operation at the start of distributed tracing instrumentation.' ) . should ( 'be.visible' ) ;
220
- cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.euiIcon-isLoaded. eui-alignTop' ) . eq ( 1 ) . trigger ( 'mouseover' ) ;
220
+ cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.eui-alignTop' ) . eq ( 1 ) . trigger ( 'mouseover' ) ;
221
221
cy . contains ( 'Range of latencies for traces within a trace group in the selected time range.' ) . should ( 'be.visible' ) ;
222
- cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.euiIcon-isLoaded. eui-alignTop' ) . eq ( 2 ) . trigger ( 'mouseover' ) ;
222
+ cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.eui-alignTop' ) . eq ( 2 ) . trigger ( 'mouseover' ) ;
223
223
cy . contains ( 'Average latency of traces within a trace group in the selected time range.' ) . should ( 'be.visible' ) ;
224
- cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.euiIcon-isLoaded. eui-alignTop' ) . eq ( 3 ) . trigger ( 'mouseover' ) ;
224
+ cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.eui-alignTop' ) . eq ( 3 ) . trigger ( 'mouseover' ) ;
225
225
cy . contains ( '24 hour time series view of hourly average, hourly percentile, and hourly range of latency for traces within a trace group.' ) . should ( 'be.visible' ) ;
226
- cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.euiIcon-isLoaded. eui-alignTop' ) . eq ( 4 ) . trigger ( 'mouseover' ) ;
226
+ cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.eui-alignTop' ) . eq ( 4 ) . trigger ( 'mouseover' ) ;
227
227
cy . contains ( 'Error rate based on count of trace errors within a trace group in the selected time range.' ) . should ( 'be.visible' ) ;
228
- cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.euiIcon-isLoaded. eui-alignTop' ) . eq ( 5 ) . trigger ( 'mouseover' ) ;
228
+ cy . get ( '.euiIcon.euiIcon--small.euiIcon--subdued.eui-alignTop' ) . eq ( 5 ) . trigger ( 'mouseover' ) ;
229
229
cy . contains ( 'Count of traces with unique trace identifiers in the selected time range.' ) . should ( 'be.visible' ) ;
230
230
} ) ;
231
231
@@ -255,7 +255,7 @@ describe('Latency by trace group table', () =>{
255
255
256
256
describe ( 'Testing filters on trace analytics page' , { scrollBehavior : false } , ( ) => {
257
257
beforeEach ( ( ) => {
258
- cy . visit ( 'app/observability-dashboards#/trace_analytics/home ' , {
258
+ cy . visit ( 'app/observability-traces#/ ' , {
259
259
onBeforeLoad : ( win ) => {
260
260
win . sessionStorage . clear ( ) ;
261
261
} ,
@@ -308,7 +308,7 @@ describe('Dump jaeger test data', () => {
308
308
cy . request ( mapping_url ) . then ( ( response ) => {
309
309
cy . request ( {
310
310
method : 'POST' ,
311
- form : true ,
311
+ // form: true,
312
312
url : 'api/console/proxy' ,
313
313
headers : {
314
314
'content-type' : 'application/json;charset=UTF-8' ,
@@ -325,7 +325,7 @@ describe('Dump jaeger test data', () => {
325
325
cy . request ( data_url ) . then ( ( response ) => {
326
326
cy . request ( {
327
327
method : 'POST' ,
328
- form : true ,
328
+ // form: true,
329
329
url : 'api/console/proxy' ,
330
330
headers : {
331
331
'content-type' : 'application/json;charset=UTF-8' ,
@@ -348,7 +348,7 @@ describe('Dump jaeger test data', () => {
348
348
349
349
describe ( 'Testing switch mode to jaeger' , ( ) => {
350
350
beforeEach ( ( ) => {
351
- cy . visit ( 'app/observability-dashboards#/trace_analytics/home ' , {
351
+ cy . visit ( 'app/observability-traces#/ ' , {
352
352
onBeforeLoad : ( win ) => {
353
353
win . sessionStorage . clear ( ) ;
354
354
} ,
0 commit comments