We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95054ee commit 6b5d85dCopy full SHA for 6b5d85d
__tests__/renderer/ViewNode.test.js
@@ -80,7 +80,8 @@ describe('ViewNode', () => {
80
)
81
})
82
83
- test('insertBefore throws if childNode is already a child', () => {
+ // no longer correct see #127 #240
84
+ test.skip('insertBefore throws if childNode is already a child', () => {
85
let node = new ViewNode()
86
let childNode = new ViewNode()
87
childNode.parentNode = node
@@ -133,7 +134,8 @@ describe('ViewNode', () => {
133
134
135
136
- test('appendChild throws if childNode is already a child', () => {
137
138
+ test.skip('appendChild throws if childNode is already a child', () => {
139
140
141
0 commit comments