Skip to content

Commit

Permalink
chore: update test
Browse files Browse the repository at this point in the history
  • Loading branch information
linzhe141 committed Oct 5, 2024
1 parent 52b4a7f commit 03af831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime-dom/__tests__/helpers/useCssVars.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ describe('useCssVars', () => {
expect(() => render(h(App), root)).not.toThrow(TypeError)
await nextTick()
expect(target.children.length).toBe(0)
expect(root.children[0].outerHTML).toBe('<div data-v-owner="0"></div>')
expect(root.children[0].outerHTML.includes('data-v-owner')).toBe(true)
})

test('with string style', async () => {
Expand Down

0 comments on commit 03af831

Please sign in to comment.