-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af43fb5
commit 3dd0a23
Showing
8 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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 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
22 changes: 11 additions & 11 deletions
22
packages/integrations/react/test/parsed-react-children.test.js
This file contains 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import { expect } from 'chai'; | ||
import convert from "../vnode-children.js"; | ||
import convert from '../vnode-children.js'; | ||
|
||
describe('experimental react children', () => { | ||
it('has undefined as children for direct children', () => { | ||
const [ imgVNode ] = convert('<img src="abc"></img>'); | ||
expect(imgVNode.props).to.deep.include({ children: undefined }); | ||
}) | ||
it('has undefined as children for direct children', () => { | ||
const [imgVNode] = convert('<img src="abc"></img>'); | ||
expect(imgVNode.props).to.deep.include({ children: undefined }); | ||
}); | ||
|
||
it('has undefined as children for nested children', () => { | ||
const [ divVNode ] = convert('<div><img src="xyz"></img></div>'); | ||
const [ imgVNode ] = divVNode.props.children; | ||
expect(imgVNode.props).to.deep.include({ children: undefined }); | ||
}) | ||
}) | ||
it('has undefined as children for nested children', () => { | ||
const [divVNode] = convert('<div><img src="xyz"></img></div>'); | ||
const [imgVNode] = divVNode.props.children; | ||
expect(imgVNode.props).to.deep.include({ children: undefined }); | ||
}); | ||
}); |
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.