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: 991adc5d6c03e2107281d5898488c83b8db9f5b3 (plain)
1
2
3
import { findByText } from '@testing-library/dom';

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