forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.test.js
More file actions
73 lines (62 loc) · 1.7 KB
/
config.test.js
File metadata and controls
73 lines (62 loc) · 1.7 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
/**
* 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';
const runJest = require('../runJest');
test('config as JSON', () => {
const result = runJest('verbose-reporter', [
'--config=' +
JSON.stringify({
testEnvironment: 'node',
testMatch: ['banana strawberry kiwi'],
}),
]);
expect(result.status).toBe(1);
expect(result.stdout).toMatch('No tests found');
});
test('works with sane config JSON', () => {
const result = runJest('verbose-reporter', [
'--config=' +
JSON.stringify({
testEnvironment: 'node',
}),
]);
expect(result.status).toBe(1);
expect(result.stderr).toMatch('works just fine');
});
test('watchman config option is respected over default argv', () => {
const {stdout} = runJest('verbose-reporter', [
'--env=node',
'--watchman=false',
'--debug',
]);
expect(stdout).toMatch('"watchman": false');
});
test('config from argv is respected with sane config JSON', () => {
const {stdout} = runJest('verbose-reporter', [
'--config=' +
JSON.stringify({
testEnvironment: 'node',
watchman: false,
}),
'--debug',
]);
expect(stdout).toMatch('"watchman": false');
});
test('works with jsdom testEnvironmentOptions config JSON', () => {
const result = runJest('environmentOptions', [
'--config=' +
JSON.stringify({
testEnvironmentOptions: {
userAgent: 'Agent/007',
},
}),
]);
expect(result.status).toBe(0);
expect(result.stderr).toMatch('found userAgent Agent/007');
});