mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-13 14:44:59 +00:00
4 lines
140 B
JavaScript
4 lines
140 B
JavaScript
import { findByText } from '@testing-library/dom';
|
|
|
|
export const waitForText = (text, container = document) => findByText(container, text);
|