forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.js
executable file
·214 lines (187 loc) · 5.98 KB
/
jest.js
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/usr/bin/env node
/**
* Copyright (c) 2014, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
/* jshint node: true */
'use strict';
var fs = require('fs');
var harmonize = require('harmonize');
var optimist = require('optimist');
var path = require('path');
/**
* Takes a description string, puts it on the next line, indents it, and makes
* sure it wraps without exceeding 80chars
*/
function _wrapDesc(desc) {
var indent = '\n ';
return indent + desc.split(' ').reduce(function(wrappedDesc, word) {
var lastLineIdx = wrappedDesc.length - 1;
var lastLine = wrappedDesc[lastLineIdx];
var appendedLastLine = lastLine === '' ? word : (lastLine + ' ' + word);
if (appendedLastLine.length > 80) {
wrappedDesc.push(word);
} else {
wrappedDesc[lastLineIdx] = appendedLastLine;
}
return wrappedDesc;
}, ['']).join(indent);
}
harmonize();
var argv = optimist
.usage('Usage: $0 [--config=<pathToConfigFile>] [TestPathRegExp]')
.options({
config: {
alias: 'c',
description: _wrapDesc(
'The path to a jest config file specifying how to find and execute ' +
'tests. If no rootDir is set in the config, the directory of the ' +
'config file is assumed to be the rootDir for the project.'
),
type: 'string'
},
coverage: {
description: _wrapDesc(
'Indicates that test coverage information should be collected and ' +
'reported in the output.'
),
type: 'boolean'
},
maxWorkers: {
alias: 'w',
description: _wrapDesc(
'Specifies the maximum number of workers the worker-pool will spawn ' +
'for running tests. This defaults to the number of the cores ' +
'available on your machine. (its usually best not to override this ' +
'default)'
),
type: 'string' // no, optimist -- its a number.. :(
},
onlyChanged: {
alias: 'o',
description: _wrapDesc(
'Attempts to identify which tests to run based on which files have ' +
'changed in the current repository. Only works if you\'re running ' +
'tests in a git repository at the moment.'
),
type: 'boolean'
},
runInBand: {
alias: 'i',
description: _wrapDesc(
'Run all tests serially in the current process (rather than creating ' +
'a worker pool of child processes that run tests). This is sometimes ' +
'useful for debugging, but such use cases are pretty rare.'
),
type: 'boolean'
},
testEnvData: {
description: _wrapDesc(
'A JSON object (string) that specifies data that will be made ' +
'available in the test environment (via jest.getEnvData())'
),
type: 'string'
},
version: {
alias: 'v',
description: _wrapDesc('Print the version and exit'),
type: 'boolean'
},
noHighlight: {
description: _wrapDesc(
'Disables test results output highlighting'
),
type: 'boolean'
},
})
.check(function(argv) {
if (argv.runInBand && argv.hasOwnProperty('maxWorkers')) {
throw (
'Both --runInBand and --maxWorkers were specified, but these two ' +
'options do not make sense together. Which is it?'
);
}
if (argv.onlyChanged && argv._.length > 0) {
throw (
'Both --onlyChanged and a path pattern were specified, but these two ' +
'options do not make sense together. Which is it? Do you want to run ' +
'tests for changed files? Or for a specific set of files?'
);
}
if (argv.testEnvData) {
argv.testEnvData = JSON.parse(argv.testEnvData);
}
})
.argv;
if (argv.help) {
optimist.showHelp();
process.on('exit', function(){
process.exit(1);
});
return;
}
var cwd = process.cwd();
// Is the cwd somewhere within an npm package?
var cwdPackageRoot = cwd;
while (!fs.existsSync(path.join(cwdPackageRoot, 'package.json'))) {
if (cwdPackageRoot === '/') {
cwdPackageRoot = cwd;
break;
}
cwdPackageRoot = path.resolve(cwdPackageRoot, '..');
}
// Is there a package.json at our cwdPackageRoot that indicates that there
// should be a version of Jest installed?
var cwdPkgJsonPath = path.join(cwdPackageRoot, 'package.json');
// Is there a version of Jest installed at our cwdPackageRoot?
var cwdJestBinPath = path.join(cwdPackageRoot, 'node_modules/jest-cli');
// Get a jest instance
var jest;
if (fs.existsSync(cwdJestBinPath)) {
// If a version of Jest was found installed in the CWD package, use that.
jest = require(cwdJestBinPath);
if (!jest.runCLI) {
console.error(
'This project requires an older version of Jest than what you have ' +
'installed globally.\n' +
'Please upgrade this project past Jest version 0.1.5'
);
process.on('exit', function(){
process.exit(1);
});
return;
}
} else {
// Otherwise, load this version of Jest.
jest = require('../');
// If a package.json was found in the CWD package indicating a specific
// version of Jest to be used, bail out and ask the user to `npm install`
// first
if (fs.existsSync(cwdPkgJsonPath)) {
var cwdPkgJson = require(cwdPkgJsonPath);
var cwdPkgDeps = cwdPkgJson.dependencies;
var cwdPkgDevDeps = cwdPkgJson.devDependencies;
if (cwdPkgDeps && cwdPkgDeps['jest-cli']
|| cwdPkgDevDeps && cwdPkgDevDeps['jest-cli']) {
console.error(
'Please run `npm install` to use the version of Jest intended for ' +
'this project.'
);
process.on('exit', function(){
process.exit(1);
});
return;
}
}
}
if (!argv.version) {
console.log('Using Jest CLI v' + jest.getVersion());
}
jest.runCLI(argv, cwdPackageRoot, function (success) {
process.on('exit', function(){
process.exit(success ? 0 : 1);
});
});