Skip to content

Commit a052349

Browse files
authored
docs: getAllByName -> getAllByType in example (#67)
<!-- Please provide enough information so that others can review your pull request. --> <!-- Keep pull requests small and focused on a single change. --> ### Summary Get rid of all `getAllByName` mentions in examples.
1 parent 85deb91 commit a052349

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ function setAnswer(question, answer) {
3737
}
3838

3939
test('should verify two questions', () => {
40-
const { getAllByName, getByText } = render(<QuestionsBoard {...props} />);
41-
const allQuestions = getAllByName(Question);
40+
const { getAllByType, getByText } = render(<QuestionsBoard {...props} />);
41+
const allQuestions = getAllByType(Question);
4242

4343
setAnswer(allQuestions[0], 'a1');
4444
setAnswer(allQuestions[1], 'a2');

0 commit comments

Comments
 (0)