Index: sky/tests/animation/basic-imperative.sky |
diff --git a/sky/tests/animation/basic-imperative.sky b/sky/tests/animation/basic-imperative.sky |
deleted file mode 100644 |
index 2a185cb18ecf8bc05de3707a8e94cf06c3da178d..0000000000000000000000000000000000000000 |
--- a/sky/tests/animation/basic-imperative.sky |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-<sky> |
-<import src="../resources/chai.sky" /> |
-<import src="../resources/mocha.sky" /> |
-<div id="example">Hello, Sky</div> |
-<script> |
-var example = document.getElementById('example'); |
- |
-describe('Element.animate opacity', function() { |
- it('should amimate from 0 to 1', function() { |
- example.animate([{ opacity: 0 }, { opacity: 1}], 2000); |
- internals.pauseAnimations(.5); |
- assert.equal(.25, getComputedStyle(example).opacity); |
- }); |
-}); |
-</script> |
-</sky> |