forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexecuteTestsOnceInMpr.ts
More file actions
62 lines (49 loc) · 1.88 KB
/
executeTestsOnceInMpr.ts
File metadata and controls
62 lines (49 loc) · 1.88 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
/**
* Copyright (c) Facebook, Inc. and its affiliates. 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 path from 'path';
import {wrap} from 'jest-snapshot-serializer-raw';
import {cleanup, extractSummary, writeFiles} from '../Utils';
import runJest from '../runJest';
const DIR = path.resolve(__dirname, '../execute-tests-once-in-mpr');
beforeEach(() => cleanup(DIR));
afterAll(() => cleanup(DIR));
test('Tests are executed only once even in an MPR', () => {
// Make a global config that ignores all sub-projects.
const config = {
jest: {
projects: ['<rootDir>', '<rootDir>/foo/*/'],
testPathIgnorePatterns: ['/foo/'],
testRegex: /my-test-.*\.js/.source,
},
};
// Make a child config with a special regexp to ensure we execute the tests.
const childConfig = {
jest: {
testRegex: /my-test-.*\.js/.source,
},
};
/* eslint-disable sort-keys */
writeFiles(DIR, {
'foo/folder/my-test-bar.js': `test('bar', () => console.log('Bar!'));`,
'foo/folder/package.json': JSON.stringify(childConfig, null, 2),
'foo/directory/my-test-baz.js': `test('baz', () => console.log('Baz!'));`,
'foo/directory/package.json': JSON.stringify(childConfig, null, 2),
'foo/whatever/my-test-qux.js': `test('qux', () => console.log('Qux!'));`,
'foo/whatever/package.json': JSON.stringify(childConfig, null, 2),
'package.json': JSON.stringify(config, null, 2),
});
/* eslint-enable sort-keys */
const {stderr, status} = runJest(DIR, ['foo/folder/my-test-bar.js']);
expect(status).toBe(0);
const {rest, summary} = extractSummary(stderr);
// We have only one test passed, so total should equal to one, despite we have
// three projects.
expect(wrap(rest)).toMatchSnapshot();
expect(summary).toMatch(/1 total/);
});