Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wait_for_text.js « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bed8a90a9879fabaf4f7eab6a19fa7cc01c450d (plain)
1
2
3
import { findByText } from '@testing-library/dom';

export const waitForText = async (text, container = document) => findByText(container, text);