summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/wait_for_text.js
blob: 991adc5d6c03e2107281d5898488c83b8db9f5b3 (plain)
1
2
3
import { findByText } from '@testing-library/dom';

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