Skip to content

Commit e9f3b19

Browse files
committed
test: align web ui parity baseline methods
1 parent 20a49c5 commit e9f3b19

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -339,12 +339,7 @@ test('captured bundled app skeleton only exposes expected data key drift versus
339339
const headMethodKeys = Object.keys(headMethods).sort();
340340
const extraCurrentMethodKeys = currentMethodKeys.filter((key) => !headMethodKeys.includes(key)).sort();
341341
const missingCurrentMethodKeys = headMethodKeys.filter((key) => !currentMethodKeys.includes(key)).sort();
342-
const allowedExtraCurrentMethodKeys = [
343-
'buildDefaultHealthCheckPrompt',
344-
'closeHealthCheckDialog',
345-
'openHealthCheckDialog',
346-
'sendHealthCheckDialogMessage'
347-
];
342+
const allowedExtraCurrentMethodKeys = [];
348343
if (parityAgainstHead) {
349344
const allowedExtraMethodKeySet = new Set(allowedExtraCurrentMethodKeys);
350345
const unexpectedExtraCurrentMethodKeys = extraCurrentMethodKeys.filter((key) => !allowedExtraMethodKeySet.has(key));

0 commit comments

Comments
 (0)