-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Expand file tree
/
Copy pathfind_related_files.test.js
More file actions
137 lines (115 loc) · 3.61 KB
/
find_related_files.test.js
File metadata and controls
137 lines (115 loc) · 3.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/**
* 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 runJest from '../runJest';
import os from 'os';
import path from 'path';
const {cleanup, writeFiles, extractSummary} = require('../Utils');
const DIR = path.resolve(os.tmpdir(), 'find_related_tests_test');
beforeEach(() => cleanup(DIR));
afterEach(() => cleanup(DIR));
describe('--findRelatedTests flag', () => {
test('runs tests related to filename', () => {
writeFiles(DIR, {
'.watchmanconfig': '',
'__tests__/test.test.js': `
const a = require('../a');
test('a', () => {});
`,
'a.js': 'module.exports = {};',
'package.json': JSON.stringify({jest: {testEnvironment: 'node'}}),
});
const {stdout} = runJest(DIR, ['a.js']);
expect(stdout).toMatch('');
const {stderr} = runJest(DIR, ['--findRelatedTests', 'a.js']);
expect(stderr).toMatch('PASS __tests__/test.test.js');
const summaryMsg = 'Ran all test suites related to files matching /a.js/i.';
expect(stderr).toMatch(summaryMsg);
});
test('generates coverage report for filename', () => {
writeFiles(DIR, {
'.watchmanconfig': '',
'__tests__/a.test.js': `
require('../a');
require('../b');
test('a', () => expect(1).toBe(1));
`,
'__tests__/b.test.js': `
require('../b');
test('b', () => expect(1).toBe(1));
`,
'a.js': 'module.exports = {}',
'b.js': 'module.exports = {}',
'package.json': JSON.stringify({
jest: {collectCoverage: true, testEnvironment: 'node'},
}),
});
let stdout;
let stderr;
({stdout, stderr} = runJest(DIR));
let summary;
let rest;
({summary, rest} = extractSummary(stderr));
expect(summary).toMatchSnapshot();
expect(
rest
.split('\n')
.map(s => s.trim())
.sort()
.join('\n'),
).toMatchSnapshot();
// both a.js and b.js should be in the coverage
expect(stdout).toMatchSnapshot();
({stdout, stderr} = runJest(DIR, ['--findRelatedTests', 'a.js']));
({summary, rest} = extractSummary(stderr));
expect(summary).toMatchSnapshot();
// should only run a.js
expect(rest).toMatchSnapshot();
// coverage should be collected only for a.js
expect(stdout).toMatchSnapshot();
});
test('coverage configuration is applied correctly', () => {
writeFiles(DIR, {
'.watchmanconfig': '',
'__tests__/a.test.js': `
require('../a');
test('a', () => expect(1).toBe(1));
`,
'a.js': 'module.exports = {}',
'b.js': 'module.exports = {}',
'package.json': JSON.stringify({
jest: {
collectCoverage: true,
collectCoverageFrom: ['!b.js', 'a.js'],
testEnvironment: 'node',
},
}),
});
let stdout;
let stderr;
({stdout, stderr} = runJest(DIR, ['--findRelatedTests', 'a.js', 'b.js']));
const {summary, rest} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(
rest
.split('\n')
.map(s => s.trim())
.sort()
.join('\n'),
).toMatchSnapshot();
// Only a.js should be in the report
expect(stdout).toMatchSnapshot();
expect(stdout).toMatch('a.js');
expect(stdout).not.toMatch('b.js');
({stdout, stderr} = runJest(DIR, ['--findRelatedTests', 'b.js']));
// Neither a.js or b.js should be in the report
expect(stdout).toMatch('No tests found');
expect(stderr).toBe('');
});
});