File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -554,7 +554,7 @@ module.exports = () => {
554554 } ) ;
555555 } ) ;
556556
557- it ( 'should return 200 and a LHCFill array for only "from" filters set for stableBeamStart and end ' , ( done ) => {
557+ it ( 'should return 200 and a LHCFill array for only "from" filters set for stableBeamStart and end' , ( done ) => {
558558 const fromValue = 1647867600000 ;
559559
560560 request ( server )
@@ -576,7 +576,7 @@ module.exports = () => {
576576 } ) ;
577577 } ) ;
578578
579- it ( 'should return 200 and a LHCFill array for only "to" filters set for stableBeamStart and end ' , ( done ) => {
579+ it ( 'should return 200 and a LHCFill array for only "to" filters set for stableBeamStart and end' , ( done ) => {
580580 const toValue = 2000000000000 ;
581581
582582 request ( server )
@@ -613,22 +613,6 @@ module.exports = () => {
613613 } ) ;
614614 } ) ;
615615
616- it ( 'should return 200 and an LHCFill array for runs duration filter, < 00:00:00' , ( done ) => {
617- request ( server )
618- . get ( '/api/lhcFills?page[offset]=0&page[limit]=15&filter[runDuration][operator]=<&filter[runDuration][limit]=00:00:00' )
619- . expect ( 200 )
620- . end ( ( err , res ) => {
621- if ( err ) {
622- done ( err ) ;
623- return ;
624- }
625-
626- expect ( res . body . data ) . to . have . lengthOf ( 0 ) ;
627-
628- done ( ) ;
629- } ) ;
630- } ) ;
631-
632616 it ( 'should return 200 and an LHCFill array for runs duration filter, > 03:00:00' , ( done ) => {
633617 request ( server )
634618 . get ( '/api/lhcFills?page[offset]=0&page[limit]=15&filter[runDuration][operator]=>&filter[runDuration][limit]=03:00:00' )
You can’t perform that action at this time.
0 commit comments