mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-04-20 03:02:51 -04:00
13 lines
363 B
TypeScript
13 lines
363 B
TypeScript
import { jest } from '@jest/globals';
|
|
import 'cli-testing-library/extend-expect';
|
|
import { configure } from 'cli-testing-library';
|
|
|
|
// Make Jest available globally
|
|
global.jest = jest;
|
|
|
|
/**
|
|
* CLI rendering gets noticeably slower under coverage and on CI, so keep a
|
|
* slightly roomier timeout than the library default.
|
|
*/
|
|
configure({ asyncUtilTimeout: 10000 });
|