wip(ssr): further restructure

This commit is contained in:
Evan You
2020-01-27 18:06:37 -05:00
parent 27fbfbdb8b
commit f4d190cc9c
5 changed files with 22 additions and 28 deletions

View File

@@ -0,0 +1,29 @@
describe('ssr: render props', () => {
test('class', () => {})
test('styles', () => {
// only render numbers for properties that allow no unit numbers
})
describe('attrs', () => {
test('basic', () => {})
test('boolean attrs', () => {})
test('enumerated attrs', () => {})
test('skip falsy values', () => {})
})
describe('domProps', () => {
test('innerHTML', () => {})
test('textContent', () => {})
test('textarea', () => {})
test('other renderable domProps', () => {
// also test camel to kebab case conversion for some props
})
})
})