mirror of https://github.com/facebook/jest.git
21 lines
648 B
TypeScript
21 lines
648 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import * as path from 'path';
|
|
import runJest from '../runJest';
|
|
|
|
describe('jest --debug', () => {
|
|
const dir = path.resolve(__dirname, '..', 'verbose-reporter');
|
|
|
|
it('outputs debugging info before running the test', () => {
|
|
const {stdout} = runJest(dir, ['--debug', '--no-cache']);
|
|
expect(stdout).toMatch('"version": "');
|
|
expect(stdout).toMatch('"configs": [');
|
|
// config contains many file paths so we cannot do snapshot test
|
|
});
|
|
});
|