Skip to content

Commit

Permalink
test: Remove redundant test case after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
karfau committed Feb 16, 2022
1 parent 6cba534 commit 75174b8
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions test/dom/element.test.js
Expand Up @@ -209,16 +209,6 @@ describe('Document', () => {
expect(doc.documentElement.toString()).toBe('<test>bye</test>')
})

describe('createElement', () => {
it('should set localName', () => {
const doc = new DOMImplementation().createDocument(null, 'test', null)

const elem = doc.createElement('foo')

expect(elem.localName === 'foo')
})
})

it('appendElement and removeElement', () => {
const dom = new DOMParser().parseFromString(`<root><A/><B/><C/></root>`)
const doc = dom.documentElement
Expand Down

0 comments on commit 75174b8

Please sign in to comment.