File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/jest-phabricator/src Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
### Fixes
10
10
11
+ - ` [jest-phabricator] ` [ ** BREAKING** ] Convert to ESM ([ #12341 ] ( https://github.com/facebook/jest/pull/12341 ) )
12
+
11
13
### Chore & Maintenance
12
14
13
15
- ` [*] ` [ ** BREAKING** ] Drop support for Node v10 and v15 and target first LTS ` 16.13.0 ` ([ #12220 ] ( https://github.com/facebook/jest/pull/12220 ) )
Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ function summarize(coverageMap: CoverageMap): CoverageMap {
38
38
return summaries ;
39
39
}
40
40
41
- export = function ( results : AggregatedResult ) : AggregatedResult {
41
+ export default function PhabricatorProcessor (
42
+ results : AggregatedResult ,
43
+ ) : AggregatedResult {
42
44
return { ...results , coverageMap : summarize ( results . coverageMap ) } ;
43
- } ;
45
+ }
You can’t perform that action at this time.
0 commit comments