-
-
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
c0daa82
commit 5631e7a
Showing
2 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
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