- Notifications
You must be signed in to change notification settings - Fork 278
feat: toContainElement matcher #1495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mdjastrzebski merged 12 commits into callstack:main from siepra:feat/toContainElement-matcher Sep 19, 2023
Merged
Changes from 1 commit
Commits
Show all changes
12 commits Select commit Hold shift + click to select a range
fe9e6f1 feat: add toContainElement matcher
siepra df01c72 chore: replace printElement with formatElement
siepra e34ee52 chore: mimic jest-dom instead of jest-native
siepra 225ec96 fix: checking host element
siepra cb3ef7e test: passing null as argument
siepra d645738 chore: rename basic test case
siepra 972d6e3 test: negative case
siepra 48002c3 test: on null elements
siepra 3d3b1b0 fix: validating host container and element
siepra a383a34 refactor: code review changes
mdjastrzebski 7a3cf3e refactor: tweaks
mdjastrzebski 49ad4e1 refactors: cleanup
mdjastrzebski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: add toContainElement matcher
- Loading branch information
commit fe9e6f1c45da4fc7130e24acf3084d80918c833c
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| import * as React from 'react'; | ||
| import { View } from 'react-native'; | ||
| import { render, screen } from '../..'; | ||
| import '../extend-expect'; | ||
| | ||
| test('toContainElement() on parent view', () => { | ||
| render( | ||
| <View testID="parent"> | ||
| <View testID="child" /> | ||
| </View> | ||
| ); | ||
| | ||
| const parent = screen.getByTestId('parent'); | ||
| const child = screen.getByTestId('child'); | ||
| | ||
| expect(parent).toContainElement(child); | ||
| | ||
| expect(() => expect(parent).not.toContainElement(child)) | ||
| .toThrowErrorMatchingInlineSnapshot(` | ||
| "expect(element).not.toContainElement(element) | ||
| | ||
| <View | ||
| children={ | ||
| <View | ||
| testID="child" | ||
| /> | ||
| } | ||
| testID="parent" | ||
| /> | ||
| | ||
| contains: | ||
| | ||
| <View | ||
| testID="child" | ||
| /> | ||
| " | ||
| `); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| import { ReactTestInstance } from 'react-test-renderer'; | ||
| import { matcherHint, RECEIVED_COLOR as receivedColor } from 'jest-matcher-utils'; | ||
| import { checkHostElement, printElement } from './utils'; | ||
| | ||
| export function toContainElement( | ||
| this: jest.MatcherContext, | ||
| container: ReactTestInstance, | ||
| element: ReactTestInstance | null | ||
| ) { | ||
| if (element !== null || !this.isNot) { | ||
| checkHostElement(element, toContainElement, this); | ||
| } | ||
| | ||
| let matches = []; | ||
siepra marked this conversation as resolved. Outdated Show resolved Hide resolved | ||
| | ||
| if (element) { | ||
| matches = container.findAll((node) => { | ||
| return ( | ||
| node.type === element.type && this.equals(node.props, element.props) | ||
| ); | ||
| }); | ||
| } | ||
| | ||
| return { | ||
| pass: Boolean(matches.length), | ||
| message: () => { | ||
| return [ | ||
| matcherHint( | ||
| `${this.isNot ? '.not' : ''}.toContainElement`, | ||
| 'element', | ||
| 'element' | ||
| ), | ||
| '', | ||
| receivedColor(`${printElement(container)} ${ | ||
| this.isNot ? '\n\ncontains:\n\n' : '\n\ndoes not contain:\n\n' | ||
| } ${printElement(element)} | ||
| `), | ||
| ].join('\n'); | ||
| }, | ||
| }; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.