File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -9,17 +9,21 @@ if (existsSync(diffPath)) {
9
9
10
10
const uninterestingFiles = [ ".generated.d.ts" , "globalThisBlockscopedProperties.types" , "mappedTypeRecursiveInference.types" ]
11
11
const withoutKnownNormalFails = diffedFiles . filter ( diff => {
12
- return uninterestingFiles . filter ( suffix => diff . to && diff . to . endsWith ( suffix ) ) . length > 0
12
+ return ! uninterestingFiles . filter ( suffix => diff . to && diff . to . endsWith ( suffix ) ) . length > 0
13
13
} )
14
14
15
15
const md = [ "## Changed baselines from the TypeScript test suite" ]
16
16
17
17
withoutKnownNormalFails . forEach ( diff => {
18
18
md . push ( `#### ${ diff . to || diff . from } }` )
19
-
19
+
20
20
md . push ( "```diff" )
21
21
diff . chunks . forEach ( chunk => {
22
22
md . push ( chunk . content )
23
+
24
+ chunk . changes . forEach ( change => {
25
+ md . push ( change . content )
26
+ } )
23
27
} )
24
28
md . push ( "```" )
25
29
} )
You can’t perform that action at this time.
0 commit comments