@@ -3,6 +3,18 @@ import { getBrowserString } from "./lib/getBrowserString.js";
3
3
import { prettyMs } from "./lib/prettyMs.js" ;
4
4
import * as Diff from "diff" ;
5
5
6
+ function serializeForDiff ( value ) {
7
+
8
+ // Use naive serialization for everything except types with confusable values
9
+ if ( typeof value === "string" ) {
10
+ return JSON . stringify ( value ) ;
11
+ }
12
+ if ( typeof value === "bigint" ) {
13
+ return `${ value } n` ;
14
+ }
15
+ return `${ value } ` ;
16
+ }
17
+
6
18
export function reportTest ( test , reportId , { browser, headless } ) {
7
19
if ( test . status === "passed" ) {
8
20
@@ -25,15 +37,19 @@ export function reportTest( test, reportId, { browser, headless } ) {
25
37
message += `\n${ error . message } ` ;
26
38
}
27
39
message += `\n${ chalk . gray ( error . stack ) } ` ;
28
- if ( "expected" in error && "actual" in error ) {
29
- message += `\nexpected: ${ JSON . stringify ( error . expected ) } ` ;
30
- message += `\nactual: ${ JSON . stringify ( error . actual ) } ` ;
40
+
41
+ // Show expected and actual values
42
+ // if either is defined and non-null.
43
+ // error.actual is set to null for failed
44
+ // assert.expect() assertions, so skip those as well.
45
+ // This should be fine because error.expected would
46
+ // have to also be null for this to be skipped.
47
+ if ( error . expected != null || error . actual != null ) {
48
+ message += `\nexpected: ${ chalk . red ( JSON . stringify ( error . expected ) ) } ` ;
49
+ message += `\nactual: ${ chalk . green ( JSON . stringify ( error . actual ) ) } ` ;
31
50
let diff ;
32
51
33
- if (
34
- Array . isArray ( error . expected ) &&
35
- Array . isArray ( error . actual )
36
- ) {
52
+ if ( Array . isArray ( error . expected ) && Array . isArray ( error . actual ) ) {
37
53
38
54
// Diff arrays
39
55
diff = Diff . diffArrays ( error . expected , error . actual ) ;
@@ -46,7 +62,7 @@ export function reportTest( test, reportId, { browser, headless } ) {
46
62
diff = Diff . diffJson ( error . expected , error . actual ) ;
47
63
} else if (
48
64
typeof error . expected === "number" &&
49
- typeof error . expected === "number"
65
+ typeof error . actual === "number"
50
66
) {
51
67
52
68
// Diff numbers directly
@@ -57,30 +73,35 @@ export function reportTest( test, reportId, { browser, headless } ) {
57
73
diff = [ { removed : true , value : `${ value } ` } ] ;
58
74
}
59
75
} else if (
60
- typeof error . expected === "boolean " &&
61
- typeof error . actual === "boolean "
76
+ typeof error . expected === "string " &&
77
+ typeof error . actual === "string "
62
78
) {
63
79
64
- // Show the actual boolean in red
65
- diff = [ { removed : true , value : ` ${ error . actual } ` } ] ;
80
+ // Diff the characters of strings
81
+ diff = Diff . diffChars ( error . expected , error . actual ) ;
66
82
} else {
67
83
68
- // Diff everything else as characters
69
- diff = Diff . diffChars ( `${ error . expected } ` , `${ error . actual } ` ) ;
84
+ // Diff everything else as words
85
+ diff = Diff . diffWords (
86
+ serializeForDiff ( error . expected ) ,
87
+ serializeForDiff ( error . actual )
88
+ ) ;
70
89
}
71
90
72
- message += "\n" ;
73
- message += diff
74
- . map ( ( part ) => {
75
- if ( part . added ) {
76
- return chalk . green ( part . value ) ;
77
- }
78
- if ( part . removed ) {
79
- return chalk . red ( part . value ) ;
80
- }
81
- return chalk . gray ( part . value ) ;
82
- } )
83
- . join ( "" ) ;
91
+ if ( diff ) {
92
+ message += "\n" ;
93
+ message += diff
94
+ . map ( ( part ) => {
95
+ if ( part . added ) {
96
+ return chalk . green ( part . value ) ;
97
+ }
98
+ if ( part . removed ) {
99
+ return chalk . red ( part . value ) ;
100
+ }
101
+ return chalk . gray ( part . value ) ;
102
+ } )
103
+ . join ( "" ) ;
104
+ }
84
105
}
85
106
}
86
107
}
0 commit comments