diff options
Diffstat (limited to 'Libraries/LibWeb/Tests/DOM/Comment.js')
-rw-r--r-- | Libraries/LibWeb/Tests/DOM/Comment.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Libraries/LibWeb/Tests/DOM/Comment.js b/Libraries/LibWeb/Tests/DOM/Comment.js deleted file mode 100644 index 0dab522e9c..0000000000 --- a/Libraries/LibWeb/Tests/DOM/Comment.js +++ /dev/null @@ -1,15 +0,0 @@ -loadPage("file:///home/anon/web-tests/Pages/Comment.html"); - -afterInitialPageLoad(() => { - test("Basic functionality", () => { - const comment = document.body.firstChild.nextSibling; - expect(comment).not.toBeNull(); - - // FIXME: Add this in once Comment's constructor is implemented. - //expect(comment).toBeInstanceOf(Comment); - - expect(comment.nodeName).toBe("#comment"); - expect(comment.data).toBe("This is a comment"); - expect(comment).toHaveLength(17); - }); -}); |