Skip to content

Commit d3dd231

Browse files
committed
test: sync web ui parity expectations
1 parent f6fc1b0 commit d3dd231

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/web-ui-behavior-parity.test.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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));

0 commit comments

Comments
 (0)