@@ -126,6 +126,7 @@ describe('ContestTableProviderBase and implementations', () => {
126126
127127 expect ( displayConfig . isShownHeader ) . toBe ( true ) ;
128128 expect ( displayConfig . isShownRoundLabel ) . toBe ( true ) ;
129+ expect ( displayConfig . isShownTaskIndex ) . toBe ( false ) ;
129130 } ) ;
130131 } ) ;
131132
@@ -164,6 +165,7 @@ describe('ContestTableProviderBase and implementations', () => {
164165
165166 expect ( displayConfig . isShownHeader ) . toBe ( true ) ;
166167 expect ( displayConfig . isShownRoundLabel ) . toBe ( true ) ;
168+ expect ( displayConfig . isShownTaskIndex ) . toBe ( false ) ;
167169 } ) ;
168170 } ) ;
169171
@@ -202,6 +204,7 @@ describe('ContestTableProviderBase and implementations', () => {
202204
203205 expect ( displayConfig . isShownHeader ) . toBe ( true ) ;
204206 expect ( displayConfig . isShownRoundLabel ) . toBe ( true ) ;
207+ expect ( displayConfig . isShownTaskIndex ) . toBe ( false ) ;
205208 } ) ;
206209 } ) ;
207210
@@ -220,6 +223,7 @@ describe('ContestTableProviderBase and implementations', () => {
220223
221224 expect ( displayConfig . isShownHeader ) . toBe ( false ) ;
222225 expect ( displayConfig . isShownRoundLabel ) . toBe ( false ) ;
226+ expect ( displayConfig . isShownTaskIndex ) . toBe ( true ) ;
223227 } ) ;
224228
225229 test ( 'expects to format contest round label correctly' , ( ) => {
@@ -245,6 +249,7 @@ describe('ContestTableProviderBase and implementations', () => {
245249
246250 expect ( displayConfig . isShownHeader ) . toBe ( false ) ;
247251 expect ( displayConfig . isShownRoundLabel ) . toBe ( false ) ;
252+ expect ( displayConfig . isShownTaskIndex ) . toBe ( true ) ;
248253 } ) ;
249254
250255 test ( 'expects to format contest round label correctly' , ( ) => {
0 commit comments