diff --git a/tests/resources/aria-at-test-io-format.mjs b/tests/resources/aria-at-test-io-format.mjs index a58109b39..8ff961cb9 100644 --- a/tests/resources/aria-at-test-io-format.mjs +++ b/tests/resources/aria-at-test-io-format.mjs @@ -30,7 +30,7 @@ const normalizeString = str => '>': '>', ''': "'", '"': '"', - }[str] || str) + })[str] || str ); /** Depends on ConfigInput. */ @@ -1436,11 +1436,11 @@ export class TestRunInputOutput { ) || command.unexpected.behaviors.some(({ checked }) => checked) ? CommandSupportJSONMap.FAILING : allAssertions.some( - ({ priority, result }) => - (priority === 2 || priority === 3) && result !== CommonResultMap.PASS - ) - ? CommandSupportJSONMap.ALL_REQUIRED - : CommandSupportJSONMap.FULL; + ({ priority, result }) => + (priority === 2 || priority === 3) && result !== CommonResultMap.PASS + ) + ? CommandSupportJSONMap.ALL_REQUIRED + : CommandSupportJSONMap.FULL; } /** @@ -1484,8 +1484,8 @@ export class TestRunInputOutput { assertion.result === AssertionResultMap.FAIL_MISSING ? AssertionFailJSONMap.NO_OUTPUT : assertion.result === AssertionResultMap.FAIL_INCORRECT - ? AssertionFailJSONMap.INCORRECT_OUTPUT - : AssertionFailJSONMap.NO_SUPPORT, + ? AssertionFailJSONMap.INCORRECT_OUTPUT + : AssertionFailJSONMap.NO_SUPPORT, }; } } @@ -1522,8 +1522,8 @@ export class TestRunInputOutput { assertion.result === 'failIncorrect' ? 'INCORRECT_OUTPUT' : assertion.result === 'failMissing' - ? 'NO_OUTPUT' - : null, + ? 'NO_OUTPUT' + : null, })), unexpectedBehaviors: command.unexpected.behaviors .map(behavior => diff --git a/tests/resources/aria-at-test-run.mjs b/tests/resources/aria-at-test-run.mjs index 9d6e77928..fbdf0f6e8 100644 --- a/tests/resources/aria-at-test-run.mjs +++ b/tests/resources/aria-at-test-run.mjs @@ -876,8 +876,8 @@ function resultsTableDocument(state) { command.unexpected.behaviors.some(({ checked }) => checked) ? 'FAILING' : allAssertions.some(({ priority, result }) => priority === 2 && !result) - ? 'ALL_REQUIRED' - : 'FULL', + ? 'ALL_REQUIRED' + : 'FULL', details: { output: /** @type {Description} */ [ 'Output:',