diff options
Diffstat (limited to 'spec')
-rwxr-xr-x | spec/spec/use.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/spec/use.js b/spec/spec/use.js index f5ab3a8..0de5b39 100755 --- a/spec/spec/use.js +++ b/spec/spec/use.js @@ -17,10 +17,6 @@ describe('Use', function() { expect(use.node.getAttributeNS(SVG.xlink, 'href')).toBe('#' + rect) }) - it('stores a reference to the target element', function() { - expect(use.target).toBe(rect) - }) - it('adopts the geometry of the target element', function() { expect(use.bbox()).toEqual(rect.bbox()) }) @@ -42,9 +38,6 @@ describe('Use', function() { expect(use.node.getAttributeNS(SVG.xlink, 'href')).toBe(file + '#' + id) }) - it('stores a reference to the target element', function() { - expect(use.target).toBe(id) - }) }) })
\ No newline at end of file |