]> source.dussan.org Git - svg.js.git/commitdiff
close tags in tests so that svgdom is satisfied
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Sat, 9 May 2020 04:50:09 +0000 (14:50 +1000)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Sat, 9 May 2020 04:51:04 +0000 (14:51 +1000)
spec/spec/elements/Dom.js
spec/spec/modules/core/circled.js
spec/spec/modules/core/selector.js
spec/spec/utils/adopter.js

index bcf0ed538f267ab80a59a6faa4bdb282a4857ac6..2e36c92028f0ed60f8126538935dacccec895043 100644 (file)
@@ -656,7 +656,7 @@ describe('Dom.js', function () {
 
       it('works without a parent', () => {
         const canvas = new Svg()
-        expect(canvas.xml('<rect /><circle>', undefined, svg)).toBe(canvas)
+        expect(canvas.xml('<rect /><circle />', undefined, svg)).toBe(canvas)
       })
     })
 
index f74332a5a69f18cf394a5cc9a3d927deba29523a..ae01f0c4faa8033bed034b1e533bedd0c2e730c0 100644 (file)
@@ -8,7 +8,7 @@ describe('circled.js', () => {
   let element
 
   beforeEach(() => {
-    element = new Ellipse(50, 50)
+    element = new Ellipse().move(50, 50)
   })
 
   describe('rx()', () => {
index 7a174665b3069984bbc68a1aa42345679e848d4a..133605914a2f5a8c6b97f16cf5e5957243ff586c 100644 (file)
@@ -6,9 +6,9 @@ import { getWindow } from '../../../../src/utils/window.js'
 describe('selector.js', () => {
   describe('baseFind()', () => {
     it('finds all elements of a selector in the document', () => {
-      const div = SVG('<div>', true).id('foo').addTo(container)
-      const span = SVG('<span>', true).addClass('bar').addTo(div)
-      const span2 = SVG('<span>', true).addTo(div)
+      const div = SVG('<div />', true).id('foo').addTo(container)
+      const span = SVG('<span />', true).addClass('bar').addTo(div)
+      const span2 = SVG('<span />', true).addTo(div)
 
       expect(find('#canvas').map(el => el.node)).toEqual([ container ])
       expect(find('span')).toEqual([ span, span2 ])
@@ -17,7 +17,7 @@ describe('selector.js', () => {
     })
 
     it('finds all elements of a selector scoped to an element', () => {
-      const div = SVG('<div>', true).id('foo').addTo(container)
+      const div = SVG('<div />', true).id('foo').addTo(container)
 
       expect(find('#canvas', getWindow().document)[0].node).toBe(container)
       expect(find('#foo', container)).toEqual([ div ])
index 5ed671317868dc9284dc7b1f7523cd2c153843e7..60c1642cf0d27a34f60d0173d7824f4e2e431827 100644 (file)
@@ -75,7 +75,7 @@ describe('adopter.js', () => {
     })
 
     it('creates an element in the html namespace from passed html string', () => {
-      const div = makeInstance('<div>', true)
+      const div = makeInstance('<div />', true)
 
       expect(adoptSpy).toHaveBeenCalledWith(any(Node))
       expect(adoptSpy).toHaveBeenCalledWith(objectContaining({ nodeName: 'DIV', namespaceURI: 'http://www.w3.org/1999/xhtml' }))