File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ test('captured bundled app skeleton only exposes expected data key drift versus
319319 const headDataKeys = Object . keys ( headAppOptions . data ( ) ) . sort ( ) ;
320320 const extraCurrentKeys = currentDataKeys . filter ( ( key ) => ! headDataKeys . includes ( key ) ) . sort ( ) ;
321321 const missingCurrentKeys = headDataKeys . filter ( ( key ) => ! currentDataKeys . includes ( key ) ) . sort ( ) ;
322- const allowedExtraCurrentKeys = [ 'sessionsUsageTimeRange' , 'sessionsViewMode' ] ;
322+ const allowedExtraCurrentKeys = [ ] ;
323323 const allowedMissingCurrentKeys = [ ] ;
324324 if ( parityAgainstHead ) {
325325 const allowedExtraKeySet = new Set ( allowedExtraCurrentKeys ) ;
@@ -357,7 +357,7 @@ test('captured bundled app skeleton only exposes expected data key drift versus
357357 const headComputedKeys = Object . keys ( headComputed ) . sort ( ) ;
358358 const extraCurrentComputedKeys = currentComputedKeys . filter ( ( key ) => ! headComputedKeys . includes ( key ) ) . sort ( ) ;
359359 const missingCurrentComputedKeys = headComputedKeys . filter ( ( key ) => ! currentComputedKeys . includes ( key ) ) . sort ( ) ;
360- const allowedExtraCurrentComputedKeys = [ 'sessionUsageCharts' , 'sessionUsageSummaryCards' ] ;
360+ const allowedExtraCurrentComputedKeys = [ ] ;
361361 if ( parityAgainstHead ) {
362362 const allowedExtraComputedKeySet = new Set ( allowedExtraCurrentComputedKeys ) ;
363363 const unexpectedExtraCurrentComputedKeys = extraCurrentComputedKeys . filter ( ( key ) => ! allowedExtraComputedKeySet . has ( key ) ) ;
You can’t perform that action at this time.
0 commit comments