forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgenerate_empty_coverage.js
More file actions
47 lines (43 loc) · 1.45 KB
/
generate_empty_coverage.js
File metadata and controls
47 lines (43 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
import type {GlobalConfig, ProjectConfig, Path} from 'types/Config';
import {createInstrumenter} from 'istanbul-lib-instrument';
import Runtime from 'jest-runtime';
export type CoverageWorkerResult = {|
coverage: any,
sourceMapPath: ?string,
|};
export default function(
source: string,
filename: Path,
globalConfig: GlobalConfig,
config: ProjectConfig,
): ?CoverageWorkerResult {
const coverageOptions = {
collectCoverage: globalConfig.collectCoverage,
collectCoverageFrom: globalConfig.collectCoverageFrom,
collectCoverageOnlyFrom: globalConfig.collectCoverageOnlyFrom,
mapCoverage: globalConfig.mapCoverage,
};
if (Runtime.shouldInstrument(filename, coverageOptions, config)) {
// Transform file without instrumentation first, to make sure produced
// source code is ES6 (no flowtypes etc.) and can be instrumented
const transformResult = new Runtime.ScriptTransformer(
config,
).transformSource(filename, source, false, globalConfig.mapCoverage);
const instrumenter = createInstrumenter();
instrumenter.instrumentSync(transformResult.code, filename);
return {
coverage: instrumenter.fileCoverage,
sourceMapPath: transformResult.sourceMapPath,
};
} else {
return null;
}
}