You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
running make test.
expected result - all tests pass
actual result:
Layer Shadow Properties should animate shadows through a shadow property:
Uncaught AssertionError: expected 0.5 to be below 0.5 (file:///Users/ryanlaney/Projects/2018/Framer/test/phantomjs/tests.js:357)
failing test does not have an initial state on blur or color and does not have an animation on color
index 79bda7a..af565cf 100644
--- a/test/tests/LayerTest.coffee
+++ b/test/tests/LayerTest.coffee
@@ -895,9 +895,12 @@ describe "Layer", ->
it "should animate shadows through a shadow property", (done) ->
l = new Layer
+ l.shadow1.blur = 0
+ l.shadow1.color = "rgba(0, 0, 0, 0.5)"
a = l.animate
shadow1:
blur: 100
+ color: "rgba(0, 0, 0, 0.25)"
Utils.delay a.time / 2, ->
l.shadow1.color.a.should.be.above 0
l.shadow1.color.a.should.be.below 0.5
The text was updated successfully, but these errors were encountered:
running make test.
expected result - all tests pass
actual result:
Uncaught AssertionError: expected 0.5 to be below 0.5 (file:///Users/ryanlaney/Projects/2018/Framer/test/phantomjs/tests.js:357)
failing test does not have an initial state on blur or color and does not have an animation on color
The text was updated successfully, but these errors were encountered: