@@ -389,15 +389,12 @@ export function instructionDocument(resultState, hooks) {
389
389
const resultAssertion = resultState . commands [ commandIndex ] . assertions [ assertionIndex ] ;
390
390
return /** @type {InstructionDocumentResultsCommandsAssertion } */ ( {
391
391
description : [ assertion ] ,
392
- passed : resultAssertion . result === AssertionResultMap . PASS ,
393
- click : ( ) =>
392
+ passed : resultAssertion . result ,
393
+ click : newResult =>
394
394
hooks . setCommandAssertion ( {
395
395
commandIndex,
396
396
assertionIndex,
397
- result :
398
- resultAssertion . result === AssertionResultMap . PASS
399
- ? AssertionResultMap . FAIL
400
- : AssertionResultMap . PASS ,
397
+ result : newResult ,
401
398
} ) ,
402
399
} ) ;
403
400
}
@@ -412,15 +409,12 @@ export function instructionDocument(resultState, hooks) {
412
409
resultState . commands [ commandIndex ] . additionalAssertions [ assertionIndex ] ;
413
410
return /** @type {InstructionDocumentResultsCommandsAssertion } */ ( {
414
411
description : [ assertion ] ,
415
- passed : resultAdditionalAssertion . result === CommonResultMap . PASS ,
416
- click : ( ) =>
412
+ passed : resultAdditionalAssertion . result ,
413
+ click : newResult =>
417
414
hooks . setCommandAssertion ( {
418
415
commandIndex,
419
416
assertionIndex,
420
- result :
421
- resultAdditionalAssertion . result === AssertionResultMap . PASS
422
- ? AssertionResultMap . FAIL
423
- : AssertionResultMap . PASS ,
417
+ result : newResult ,
424
418
} ) ,
425
419
} ) ;
426
420
}
@@ -477,7 +471,7 @@ export const AdditionalAssertionResultMap = createEnumMap({
477
471
} ) ;
478
472
479
473
/**
480
- * @typedef {EnumValues<typeof AssertionResultMap> } AssertionResult
474
+ * @typedef {boolean | null } AssertionResult
481
475
*/
482
476
483
477
export const AssertionResultMap = createEnumMap ( {
@@ -854,14 +848,14 @@ function resultsTableDocument(state) {
854
848
let failingAssertions = [ 'No failing assertions' ] ;
855
849
let unexpectedBehaviors = [ 'None' ] ;
856
850
857
- if ( allAssertions . some ( ( { result } ) => result === CommonResultMap . PASS ) ) {
851
+ if ( allAssertions . some ( ( { result } ) => result ) ) {
858
852
passingAssertions = allAssertions
859
- . filter ( ( { result } ) => result === CommonResultMap . PASS )
853
+ . filter ( ( { result } ) => result )
860
854
. map ( ( { description } ) => description ) ;
861
855
}
862
- if ( allAssertions . some ( ( { result } ) => result !== CommonResultMap . PASS ) ) {
856
+ if ( allAssertions . some ( ( { result } ) => ! result ) ) {
863
857
failingAssertions = allAssertions
864
- . filter ( ( { result } ) => result !== CommonResultMap . PASS )
858
+ . filter ( ( { result } ) => ! result )
865
859
. map ( ( { description } ) => description ) ;
866
860
}
867
861
if ( command . unexpected . behaviors . some ( ( { checked } ) => checked ) ) {
@@ -878,13 +872,10 @@ function resultsTableDocument(state) {
878
872
return {
879
873
description : command . description ,
880
874
support :
881
- allAssertions . some (
882
- ( { priority, result } ) => priority === 1 && result !== CommonResultMap . PASS
883
- ) || command . unexpected . behaviors . some ( ( { checked } ) => checked )
875
+ allAssertions . some ( ( { priority, result } ) => priority === 1 && ! result ) ||
876
+ command . unexpected . behaviors . some ( ( { checked } ) => checked )
884
877
? 'FAILING'
885
- : allAssertions . some (
886
- ( { priority, result } ) => priority === 2 && result !== CommonResultMap . PASS
887
- )
878
+ : allAssertions . some ( ( { priority, result } ) => priority === 2 && ! result )
888
879
? 'ALL_REQUIRED'
889
880
: 'FULL' ,
890
881
details : {
@@ -1109,7 +1100,7 @@ export function userValidateState() {
1109
1100
/**
1110
1101
* @typedef InstructionDocumentResultsCommandsAssertion
1111
1102
* @property {Description } description
1112
- * @property {Boolean } passed
1103
+ * @property {Boolean | null } passed
1113
1104
* @property {boolean } [focus]
1114
1105
* @property {() => void } click
1115
1106
*/
0 commit comments