]> source.dussan.org Git - svg.js.git/commitdiff
Add regression test for #1235 1236/head
authorMorgan Harris <gormster@me.com>
Tue, 23 Nov 2021 02:15:21 +0000 (13:15 +1100)
committerMorgan Harris <gormster@me.com>
Tue, 23 Nov 2021 02:15:21 +0000 (13:15 +1100)
This is literally all you have to do to break this function... just have
one single other group in your document.

spec/spec/elements/Element.js

index 38b862f3272eab55109f2aeab566eefc848f423c..70c3a52ff0a892a7333b4e404a288d7e85a3b230 100644 (file)
@@ -165,6 +165,7 @@ describe('Element.js', function () {
   describe('parents()', () => {
     it('returns array of parents until the passed element or root svg', () => {
       const canvas = SVG().addTo(container)
+      const groupA = canvas.group().addClass('test')
       const group1 = canvas.group().addClass('test')
       const group2 = group1.group()
       const group3 = group2.group()