Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions packages/runtime-vapor/__tests__/hydration.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {
createPlainElement,
createVaporSSRApp,
defineVaporAsyncComponent,
delegateEvents,
Expand Down Expand Up @@ -4031,8 +4032,26 @@ describe('Vapor Mode hydration', () => {
expect((container.firstChild! as any).foo).toBe(true)
})

// vapor custom element not implemented yet
test.todo('force hydrate custom element with dynamic props', () => {})
test('force hydrate custom element with dynamic props', () => {
class MyElement extends HTMLElement {
foo = ''
constructor() {
super()
}
}
customElements.define('my-element-7203', MyElement)

const msg = ref('bar')
const container = document.createElement('div')
container.innerHTML = '<my-element-7203></my-element-7203>'
const app = createVaporSSRApp({
setup() {
return createPlainElement('my-element-7203', { foo: () => msg.value })
},
})
app.mount(container)
expect((container.firstChild as any).foo).toBe(msg.value)
})
})
})

Expand Down
Loading