22 lines
403 B
TypeScript
22 lines
403 B
TypeScript
|
describe('vnode', () => {
|
||
|
test.todo('create with just tag')
|
||
|
|
||
|
test.todo('create with tag and props')
|
||
|
|
||
|
test.todo('create with tag, props and children')
|
||
|
|
||
|
test.todo('create with 0 as props')
|
||
|
|
||
|
test.todo('class normalization')
|
||
|
|
||
|
test.todo('style normalization')
|
||
|
|
||
|
test.todo('children normalization')
|
||
|
|
||
|
test.todo('normalizeVNode')
|
||
|
|
||
|
test.todo('node type inference')
|
||
|
|
||
|
test.todo('cloneVNode')
|
||
|
})
|