forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_tests.test.js
More file actions
49 lines (42 loc) · 1.2 KB
/
list_tests.test.js
File metadata and controls
49 lines (42 loc) · 1.2 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
/**
* 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');
const path = require('path');
const testRootDir = path.resolve(__dirname, '..', '..');
const normalizePaths = rawPaths =>
rawPaths
.split(testRootDir)
.join(`${path.sep}MOCK_ABOLUTE_PATH`)
.split('\\')
.join('/');
describe('--listTests flag', () => {
it('causes tests to be printed in different lines', () => {
const {status, stdout} = runJest('list-tests', ['--listTests']);
expect(status).toBe(0);
expect(
normalizePaths(stdout)
.split('\n')
.sort()
.join('\n'),
).toMatchSnapshot();
});
it('causes tests to be printed out as JSON when using the --json flag', () => {
const {status, stdout} = runJest('list-tests', ['--listTests', '--json']);
expect(status).toBe(0);
expect(() => JSON.parse(stdout)).not.toThrow();
expect(
JSON.stringify(
JSON.parse(stdout)
.map(normalizePaths)
.sort(),
),
).toMatchSnapshot();
});
});