]> source.dussan.org Git - svg.js.git/commitdiff
Add unit tests for width & height animation 676/head
authorCorentin J <corentinjule@gmail.com>
Thu, 11 May 2017 12:49:52 +0000 (14:49 +0200)
committerGitHub <noreply@github.com>
Thu, 11 May 2017 12:49:52 +0000 (14:49 +0200)
spec/spec/fx.js

index d6d87f2872195d349197d04829ec31983f32844b..5cf4eb85e91ddc5e79d1df72b406014a072ac734 100644 (file)
@@ -2539,6 +2539,22 @@ describe('FX', function() {
       expect(fx.add).toHaveBeenCalledWith('height', jasmine.objectContaining({value:60}))
     })
   })
+  
+  describe('width()', function() {
+    it('should set width with add()', function() {
+      spyOn(fx, 'add').and.callThrough()
+      fx.width(20)
+      expect(fx.add).toHaveBeenCalledWith('width', jasmine.objectContaining({value:20}))
+    })
+  })
+  
+  describe('height()', function() {
+    it('should set height with add()', function() {
+      spyOn(fx, 'add').and.callThrough()
+      fx.height(20)
+      expect(fx.add).toHaveBeenCalledWith('height', jasmine.objectContaining({value:20}))
+    })
+  })
 
   describe('plot()', function() {
     it('should call add with plot as method', function() {