@ -27,7 +27,7 @@ e2e.scenario({
` Server:pipe = A'A"A|BB \\ B|CCC ` ,
` Server:pipe = A'A"A|BB \\ B|CCC ` ,
` Server:distributed = A'A"A,Server=BB \\ B,Server=CCC ` ,
` Server:distributed = A'A"A,Server=BB \\ B,Server=CCC ` ,
` Server:csv = A'A"A,BB \\ B,CCC ` ,
` Server:csv = A'A"A,BB \\ B,CCC ` ,
` Server:html = A'A" A, BB \\ B, CCC ` ,
` Server:html = A'A" A, BB \\ B, CCC ` ,
` Server:json = ["A'A \\ "A","BB \\ \\ B","CCC"] ` ,
` Server:json = ["A'A \\ "A","BB \\ \\ B","CCC"] ` ,
` Server:percentencode = %7BA%27A%22A%2CBB%5CB%2CCCC%7D ` ,
` Server:percentencode = %7BA%27A%22A%2CBB%5CB%2CCCC%7D ` ,
` Server:singlequote = 'A \\ 'A"A','BB \\ B','CCC' ` ,
` Server:singlequote = 'A \\ 'A"A','BB \\ B','CCC' ` ,
@ -36,11 +36,13 @@ e2e.scenario({
` Server:date = null ` ,
` Server:date = null ` ,
` Server:text = All ` ,
` Server:text = All ` ,
` Server:queryparam = var-Server=All ` ,
` Server:queryparam = var-Server=All ` ,
` 1 < 2 ` ,
` Example: from=now-6h&to=now ` ,
] ;
] ;
e2e ( )
e2e ( )
. get ( '.markdown-html li' )
. get ( '.markdown-html li' )
. should ( 'have.length' , 24 )
. should ( 'have.length' , 26 )
. each ( ( element ) = > {
. each ( ( element ) = > {
items . push ( element . text ( ) ) ;
items . push ( element . text ( ) ) ;
} )
} )
@ -49,5 +51,10 @@ e2e.scenario({
expect ( items [ index ] ) . to . equal ( expected ) ;
expect ( items [ index ] ) . to . equal ( expected ) ;
} ) ;
} ) ;
} ) ;
} ) ;
// Check link interpolation is working correctly
e2e ( )
. contains ( 'a' , 'Example: from=now-6h&to=now' )
. should ( 'have.attr' , 'href' , 'https://example.com/?from=now-6h&to=now' ) ;
} ,
} ,
} ) ;
} ) ;