forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcliHandlesExactFilenames.test.ts
More file actions
55 lines (43 loc) · 1.54 KB
/
cliHandlesExactFilenames.test.ts
File metadata and controls
55 lines (43 loc) · 1.54 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
/**
* 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 {skipSuiteOnWindows} from '../../scripts/ConditionalTest';
import {cleanup, extractSummary, writeFiles} from '../Utils';
import runJest from '../runJest';
const DIR = path.resolve(__dirname, '../cli_accepts_exact_filenames');
skipSuiteOnWindows();
beforeEach(() => cleanup(DIR));
afterAll(() => cleanup(DIR));
test('CLI accepts exact file names if matchers matched', () => {
writeFiles(DIR, {
'foo/bar.spec.js': `
test('foo', () => {});
`,
'package.json': JSON.stringify({jest: {testEnvironment: 'node'}}),
});
const result = runJest(DIR, ['-i', '--forceExit', './foo/bar.spec.js']);
expect(result.status).toBe(0);
const {rest, summary} = extractSummary(result.stderr);
expect(wrap(rest)).toMatchSnapshot();
expect(wrap(summary)).toMatchSnapshot();
expect(result.stdout).toBe('');
});
test('CLI skips exact file names if no matchers matched', () => {
writeFiles(DIR, {
'foo/bar.js': `
test('foo', () => {);
`,
'package.json': JSON.stringify({jest: {testEnvironment: 'node'}}),
});
const result = runJest(DIR, ['-i', '--forceExit', './foo/bar.js']);
expect(result.status).toBe(1);
expect(result.stdout).toMatch(/No tests found([\S\s]*)2 files checked./);
expect(result.stderr).toEqual('');
});