File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/components/cylc/table Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ export default {
219
219
sort : (a , b ) => DEFAULT_COMPARATOR (a ?? ' ' , b ?? ' ' )
220
220
},
221
221
{
222
- text: ' Job System ' ,
222
+ text: ' Job Runner ' ,
223
223
value: ' latestJob.node.jobRunnerName' ,
224
224
sort : (a , b ) => DEFAULT_COMPARATOR (a ?? ' ' , b ?? ' ' )
225
225
},
@@ -229,22 +229,22 @@ export default {
229
229
sort : (a , b ) => DEFAULT_COMPARATOR (a ?? ' ' , b ?? ' ' )
230
230
},
231
231
{
232
- text: ' T-submit ' ,
232
+ text: ' Submit ' ,
233
233
value: ' latestJob.node.submittedTime' ,
234
234
sort : (a , b ) => datetimeComparator (a ?? ' ' , b ?? ' ' )
235
235
},
236
236
{
237
- text: ' T-start ' ,
237
+ text: ' Start ' ,
238
238
value: ' latestJob.node.startedTime' ,
239
239
sort : (a , b ) => datetimeComparator (a ?? ' ' , b ?? ' ' )
240
240
},
241
241
{
242
- text: ' T-finish ' ,
242
+ text: ' Finish ' ,
243
243
value: ' latestJob.node.finishedTime' ,
244
244
sort : (a , b ) => datetimeComparator (a ?? ' ' , b ?? ' ' )
245
245
},
246
246
{
247
- text: ' dT-mean ' ,
247
+ text: ' Run Time ' ,
248
248
value: ' task.node.task.meanElapsedTime' ,
249
249
sort : (a , b ) => parseInt (a ?? 0 ) - parseInt (b ?? 0 )
250
250
}
Original file line number Diff line number Diff line change @@ -115,12 +115,12 @@ describe('Table view', () => {
115
115
. contains ( 'eventually' )
116
116
. should ( 'be.visible' )
117
117
} )
118
- it ( 'displays and sorts dt- mean' , ( ) => {
118
+ it ( 'displays and sorts mean run time ' , ( ) => {
119
119
cy . visit ( '/#/table/one' )
120
120
121
121
cy
122
122
// sort dt-mean ascending
123
- . get ( '[aria-label="dT-mean : Not sorted. Activate to sort ascending."] > :nth-child(1)' )
123
+ . get ( '[aria-label="Run Time : Not sorted. Activate to sort ascending."] > :nth-child(1)' )
124
124
. click ( { force : true } )
125
125
126
126
// check 0 is at the top (1st row, 10th column)
@@ -129,7 +129,7 @@ describe('Table view', () => {
129
129
expect ( $ele . text ( ) . trim ( ) ) . equal ( '' ) // no value sorted first
130
130
} )
131
131
132
- // sort ft -mean descending
132
+ // sort dt -mean descending
133
133
. get ( '.asc > .v-icon > .v-icon__svg > path' )
134
134
. click ( { force : true } )
135
135
You can’t perform that action at this time.
0 commit comments