32 lines
704 B
TypeScript
32 lines
704 B
TypeScript
// import { renderToString, renderComponent } from '../src'
|
|
|
|
describe('ssr: renderToString', () => {
|
|
describe('elements', () => {
|
|
test('text children', () => {})
|
|
|
|
test('array children', () => {})
|
|
|
|
test('void elements', () => {})
|
|
|
|
test('innerHTML', () => {})
|
|
|
|
test('textContent', () => {})
|
|
|
|
test('textarea value', () => {})
|
|
})
|
|
|
|
describe('components', () => {
|
|
test('nested components', () => {})
|
|
|
|
test('nested components with optimized slots', () => {})
|
|
|
|
test('mixing optimized / vnode components', () => {})
|
|
|
|
test('nested components with vnode slots', () => {})
|
|
|
|
test('async components', () => {})
|
|
|
|
test('parallel async components', () => {})
|
|
})
|
|
})
|