|
|
@@ -0,0 +1,35 @@
|
|
|
+describe('vdom: unkeyed children', () => {
|
|
|
+ test.todo('append')
|
|
|
+
|
|
|
+ test.todo('prepend')
|
|
|
+
|
|
|
+ test.todo('insert in middle')
|
|
|
+
|
|
|
+ test.todo('insert at beginning and end')
|
|
|
+
|
|
|
+ test.todo('insert to empty parent')
|
|
|
+
|
|
|
+ test.todo('shift with offset')
|
|
|
+
|
|
|
+ test.todo('remove from beginning')
|
|
|
+
|
|
|
+ test.todo('remove from end')
|
|
|
+
|
|
|
+ test.todo('remove from middle')
|
|
|
+
|
|
|
+ test.todo('moving single child forward')
|
|
|
+
|
|
|
+ test.todo('moving single child backwards')
|
|
|
+
|
|
|
+ test.todo('moving single child to end')
|
|
|
+
|
|
|
+ test.todo('swap first and last')
|
|
|
+
|
|
|
+ test.todo('move to left & replace')
|
|
|
+
|
|
|
+ test.todo('generic reorder')
|
|
|
+
|
|
|
+ test.todo('should not de-opt when both head and tail change')
|
|
|
+})
|
|
|
+
|
|
|
+describe('vdom: keyed children', () => {})
|