@@ -537,11 +537,9 @@ test('/search preserve bbox in prev and next links', async (t) => {
537537 t . deepEqual ( linkRel ( response , 'next' ) . body . bbox , bbox )
538538} )
539539
540- test ( '/search Query Extension ' , async ( t ) => {
540+ test ( '/search query extension ' , async ( t ) => {
541541 let response = null
542542
543- // 3 items, 2 with platform landsat-8, 1 with platform2
544-
545543 response = await t . context . api . client . post ( 'search' , {
546544 json : { }
547545 } )
@@ -644,20 +642,14 @@ test('/search Query Extension', async (t) => {
644642 t . is ( response . features . length , 0 )
645643} )
646644
647- test ( '/search Filter Extension - Null filter' , async ( t ) => {
648- // 3 items, 2 with platform landsat-8, 1 with platform2
649-
650- let response = null
651-
652- response = await t . context . api . client . post ( 'search' , {
645+ test ( '/search filter extension - empty filter' , async ( t ) => {
646+ const response = await t . context . api . client . post ( 'search' , {
653647 json : { }
654648 } )
655649 t . is ( response . features . length , 3 )
656650} )
657651
658- test ( '/search Filter Extension - Comparison Operators' , async ( t ) => {
659- // 3 items, 2 with platform landsat-8, 1 with platform2
660-
652+ test ( '/search filter extension - comparison operators' , async ( t ) => {
661653 let response = null
662654
663655 // equal
@@ -786,9 +778,7 @@ test('/search Filter Extension - Comparison Operators', async (t) => {
786778 t . is ( response . features . length , 3 )
787779} )
788780
789- test ( '/search Filter Extension - Logical Operators' , async ( t ) => {
790- // 3 items, 2 with platform landsat-8, 1 with platform2
791-
781+ test ( '/search filter extension - logical operators' , async ( t ) => {
792782 let response = null
793783
794784 // and
@@ -931,12 +921,8 @@ test('/search Filter Extension - Logical Operators', async (t) => {
931921 t . is ( response . features . length , 0 )
932922} )
933923
934- test ( '/search Filter Extension - Timestamps' , async ( t ) => {
935- // 3 items, 2 with platform landsat-8, 1 with platform2
936-
937- let response = null
938-
939- response = await t . context . api . client . post ( 'search' , {
924+ test ( '/search filter extension - handles timestamps' , async ( t ) => {
925+ const response = await t . context . api . client . post ( 'search' , {
940926 json : {
941927 filter : {
942928 op : '>' ,
@@ -952,10 +938,8 @@ test('/search Filter Extension - Timestamps', async (t) => {
952938 t . is ( response . features . length , 1 )
953939} )
954940
955- test ( '/search Combined Item Search and Filter and Query Extensions' , async ( t ) => {
956- let response = null
957-
958- response = await t . context . api . client . post ( 'search' , {
941+ test ( '/search filter, query, and item search in single request' , async ( t ) => {
942+ const response = await t . context . api . client . post ( 'search' , {
959943 json : {
960944 collections : [ 'landsat-8-l1' ] ,
961945 query : {
0 commit comments