@@ -10,7 +10,6 @@ import {
10
10
} from "../testFunctions" ;
11
11
import { anvilFilters , anvilTabs , anvilTabTestOrder } from "./anvil-tabs" ;
12
12
13
- test . describe . configure ( { mode : "parallel" , timeout : 60 * 1000 } ) ;
14
13
const filter_index_list = [ 3 , 4 , 5 , 10 , 6 , 2 ] ;
15
14
const filter_index_list_short = [ 1 , 10 , 3 ] ;
16
15
test ( "Check that all filters exist on the Datasets tab and are clickable" , async ( {
@@ -108,32 +107,32 @@ test("Check that filter menu counts match actual counts on the Activities tab",
108
107
) ;
109
108
} ) ;
110
109
111
- test . setTimeout ( 120000 ) ;
112
110
test ( "Check that the blue filter bubbles match the selected filter for an arbitrary filter on the Files tab" , async ( {
113
111
page,
114
112
} ) => {
113
+ test . setTimeout ( 120000 ) ;
115
114
await testFilterBubbles (
116
115
page ,
117
116
anvilTabs . files ,
118
117
filter_index_list_short . map ( ( x ) => anvilFilters [ x ] )
119
118
) ;
120
119
} ) ;
121
120
122
- test . setTimeout ( 120000 ) ;
123
121
test ( "Check that the blue filter bubbles match the selected filter for an arbitrary filter on the BioSamples tab" , async ( {
124
122
page,
125
123
} ) => {
124
+ test . setTimeout ( 120000 ) ;
126
125
await testFilterBubbles (
127
126
page ,
128
127
anvilTabs . biosamples ,
129
128
filter_index_list_short . map ( ( x ) => anvilFilters [ x ] )
130
129
) ;
131
130
} ) ;
132
131
133
- test . setTimeout ( 120000 ) ;
134
132
test ( "Check that the clear all button functions on the files tab" , async ( {
135
133
page,
136
134
} ) => {
135
+ test . setTimeout ( 120000 ) ;
137
136
await testClearAll (
138
137
page ,
139
138
anvilTabs . files ,
0 commit comments