20 lines
399 B
TypeScript
20 lines
399 B
TypeScript
describe('ssr: render props', () => {
|
|
test('class', () => {})
|
|
|
|
test('style', () => {
|
|
// only render numbers for properties that allow no unit numbers
|
|
})
|
|
|
|
test('normal attrs', () => {})
|
|
|
|
test('boolean attrs', () => {})
|
|
|
|
test('enumerated attrs', () => {})
|
|
|
|
test('ignore falsy values', () => {})
|
|
|
|
test('props to attrs', () => {})
|
|
|
|
test('ignore non-renderable props', () => {})
|
|
})
|