renderProps.spec.ts 399 B

12345678910111213141516171819
  1. describe('ssr: render props', () => {
  2. test('class', () => {})
  3. test('style', () => {
  4. // only render numbers for properties that allow no unit numbers
  5. })
  6. test('normal attrs', () => {})
  7. test('boolean attrs', () => {})
  8. test('enumerated attrs', () => {})
  9. test('ignore falsy values', () => {})
  10. test('props to attrs', () => {})
  11. test('ignore non-renderable props', () => {})
  12. })