Skip to content

Commit 369b70b

Browse files
committed
chore: get rid of redundant tests
1 parent 52a8fa2 commit 369b70b

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

packages/runtime-vapor/__tests__/dom/template.spec.ts

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,4 @@ describe('api: template', () => {
4040
expect(nthChild(root, 2)).toBe(root.childNodes[2])
4141
expect(next(b)).toBe(root.childNodes[2])
4242
})
43-
44-
describe('tag closure omission', () => {
45-
test('final close tags', () => {
46-
const t = template('<div><span>')
47-
const root = t() as HTMLElement
48-
const html = root.outerHTML
49-
50-
expect(html).toBe('<div><span></span></div>')
51-
})
52-
53-
test('wrapped non-formatting tag closure', () => {
54-
const t = template('<div><div><span></div><div>')
55-
const root = t() as HTMLElement
56-
const html = root.outerHTML
57-
58-
expect(html).toBe('<div><div><span></span></div><div></div></div>')
59-
})
60-
})
6143
})

0 commit comments

Comments
 (0)