-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Expand file tree
/
Copy pathgenerate_empty_coverage.test.js
More file actions
49 lines (42 loc) · 1.09 KB
/
generate_empty_coverage.test.js
File metadata and controls
49 lines (42 loc) · 1.09 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
48
49
/**
* 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
*/
'use strict';
import generateEmptyCoverage from '../generate_empty_coverage';
const os = require('os');
const {makeGlobalConfig, makeProjectConfig} = require('../../../../TestUtils');
jest.mock('jest-runtime', () => {
// $FlowFixMe requireActual
const realRuntime = require.requireActual('jest-runtime');
realRuntime.shouldInstrument = () => true;
return realRuntime;
});
const src = `
throw new Error('this should not be thrown');
const a = (b, c) => {
if (b) {
return c;
} else {
return b;
}
};
module.exports = {
a,
};`;
it('generates an empty coverage object for a file without running it', () => {
const emptyCoverage = generateEmptyCoverage(
src,
'/sum.js',
makeGlobalConfig(),
makeProjectConfig({
cacheDirectory: os.tmpdir(),
rootDir: os.tmpdir(),
}),
);
expect(emptyCoverage && emptyCoverage.coverage).toMatchSnapshot();
});