Skip to content

Commit 44fb7fa

Browse files
authored
Tests: add diffing to test reporter
Close gh-5445
1 parent 1e84908 commit 44fb7fa

File tree

3 files changed

+63
-5
lines changed

3 files changed

+63
-5
lines changed

package-lock.json

+13-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
"commitplease": "3.2.0",
112112
"concurrently": "8.2.2",
113113
"core-js-bundle": "3.36.0",
114+
"diff": "5.2.0",
114115
"eslint": "8.57.0",
115116
"eslint-config-jquery": "3.0.2",
116117
"eslint-plugin-import": "2.29.1",

test/runner/reporter.js

+49-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import chalk from "chalk";
22
import { getBrowserString } from "./lib/getBrowserString.js";
33
import { prettyMs } from "./lib/prettyMs.js";
4+
import * as Diff from "diff";
45

56
export function reportTest( test, reportId, { browser, headless } ) {
67
if ( test.status === "passed" ) {
@@ -24,12 +25,58 @@ export function reportTest( test, reportId, { browser, headless } ) {
2425
message += `\n${ chalk.gray( error.stack ) }`;
2526
if ( error.expected && error.actual ) {
2627
message += `\nexpected: ${ JSON.stringify( error.expected ) }`;
27-
message += `\nactual: ${ chalk.red( JSON.stringify( error.actual ) ) }`;
28+
message += `\nactual: ${ JSON.stringify( error.actual ) }`;
29+
let diff;
30+
31+
if (
32+
Array.isArray( error.expected ) &&
33+
Array.isArray( error.actual )
34+
) {
35+
36+
// Diff arrays
37+
diff = Diff.diffArrays( error.expected, error.actual );
38+
} else if (
39+
typeof error.expected === "object" &&
40+
typeof error.actual === "object"
41+
) {
42+
43+
// Diff objects
44+
diff = Diff.diffJson( error.expected, error.actual );
45+
} else if (
46+
typeof error.expected === "number" &&
47+
typeof error.expected === "number"
48+
) {
49+
50+
// Diff numbers directly
51+
const value = error.actual - error.expected;
52+
if ( value > 0 ) {
53+
diff = [ { added: true, value: `+${ value }` } ];
54+
} else {
55+
diff = [ { removed: true, value: `${ value }` } ];
56+
}
57+
} else {
58+
59+
// Diff everything else as characters
60+
diff = Diff.diffChars( `${ error.expected }`, `${ error.actual }` );
61+
}
62+
63+
message += "\n";
64+
message += diff
65+
.map( ( part ) => {
66+
if ( part.added ) {
67+
return chalk.green( part.value );
68+
}
69+
if ( part.removed ) {
70+
return chalk.red( part.value );
71+
}
72+
return chalk.gray( part.value );
73+
} )
74+
.join( "" );
2875
}
2976
}
3077
}
3178

32-
console.log( "\n\n" + message );
79+
console.log( `\n\n${ message }` );
3380

3481
// Only return failed messages
3582
if ( test.status === "failed" ) {

0 commit comments

Comments
 (0)