12 lines
481 B
JavaScript
12 lines
481 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const globals_1 = require("@jest/globals");
|
|
require("cli-testing-library/extend-expect");
|
|
const cli_testing_library_1 = require("cli-testing-library");
|
|
// Make Jest available globally
|
|
global.jest = globals_1.jest;
|
|
/**
|
|
* Adjusted the wait time for waitFor/findByText to 2000ms, because the default 1000ms makes the test results flaky
|
|
*/
|
|
(0, cli_testing_library_1.configure)({ asyncUtilTimeout: 2000 });
|