summaryrefslogtreecommitdiffstats
path: root/test/setup.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/setup.js')
-rw-r--r--test/setup.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/setup.js b/test/setup.js
deleted file mode 100644
index 0844695..0000000
--- a/test/setup.js
+++ /dev/null
@@ -1,18 +0,0 @@
-
-// RequestAnimationFrame Polyfill
-var raf = window.requestAnimationFrame
- || window.webkitRequestAnimationFrame
- || window.mozRequestAnimationFrame
- || function(cb) { window.setTimeout(cb, 1000 / 60); };
-
-// Make constructor
-var FastDom = fastdom.constructor;
-
-// Alias chai.assert
-var assert = chai.assert;
-
-function objectLength(object) {
- var l = 0;
- for (var key in object) l++;
- return l;
-} \ No newline at end of file