@@ -10,28 +10,28 @@ export function reportTest( test, reportId, { browser, headless } ) {
10
10
return ;
11
11
}
12
12
13
- let message = `Test ${ test . status } on ${ chalk . yellow (
13
+ let message = `${ chalk . bold ( `${ test . suiteName } : ${ test . name } ` ) } ` ;
14
+ message += `\nTest ${ test . status } on ${ chalk . yellow (
14
15
getBrowserString ( browser , headless )
15
16
) } (${ chalk . bold ( reportId ) } ).`;
16
- message += `\n${ chalk . bold ( `${ test . suiteName } : ${ test . name } ` ) } ` ;
17
17
18
- // Prefer failed assertions over error messages
19
- if ( test . assertions . filter ( ( a ) => ! ! a && ! a . passed ) . length ) {
20
- test . assertions . forEach ( ( assertion , i ) => {
21
- if ( ! assertion . passed ) {
22
- message += `\n${ i + 1 } . ${ chalk . red ( assertion . message ) } ` ;
23
- message += `\n${ chalk . gray ( assertion . stack ) } ` ;
24
- }
25
- } ) ;
26
- } else if ( test . errors . length ) {
18
+ // test.assertions only contains passed assertions;
19
+ // test.errors contains all failed asssertions
20
+ if ( test . errors . length ) {
27
21
for ( const error of test . errors ) {
28
- message += `\n${ chalk . red ( error . message ) } ` ;
22
+ message += "\n" ;
23
+ message += `\n${ error . message } ` ;
29
24
message += `\n${ chalk . gray ( error . stack ) } ` ;
25
+ if ( error . expected && error . actual ) {
26
+ message += `\nexpected: ${ JSON . stringify ( error . expected ) } ` ;
27
+ message += `\nactual: ${ chalk . red ( JSON . stringify ( error . actual ) ) } ` ;
28
+ }
30
29
}
31
30
}
32
31
33
32
console . log ( "\n\n" + message ) ;
34
33
34
+ // Only return failed messages
35
35
if ( test . status === "failed" ) {
36
36
return message ;
37
37
}
0 commit comments