jest/e2e/__tests__/stackTraceNoCaptureStackTra...

15 lines
487 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 runJest from '../runJest';
it('prints a usable stack trace even if no Error.captureStackTrace', () => {
const {stderr, exitCode} = runJest('stack-trace-no-capture-stack-trace');
expect(stderr).not.toMatch('Error.captureStackTrace is not a function');
expect(exitCode).toBe(1);
});