renderProps.spec.ts 602 B

1234567891011121314151617181920212223242526272829
  1. describe('ssr: render props', () => {
  2. test('class', () => {})
  3. test('styles', () => {
  4. // only render numbers for properties that allow no unit numbers
  5. })
  6. describe('attrs', () => {
  7. test('basic', () => {})
  8. test('boolean attrs', () => {})
  9. test('enumerated attrs', () => {})
  10. test('skip falsy values', () => {})
  11. })
  12. describe('domProps', () => {
  13. test('innerHTML', () => {})
  14. test('textContent', () => {})
  15. test('textarea', () => {})
  16. test('other renderable domProps', () => {
  17. // also test camel to kebab case conversion for some props
  18. })
  19. })
  20. })