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

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