Add integration tests

This commit is contained in:
Chi Vinh Le
2018-08-28 01:35:13 +02:00
parent 99e34979d1
commit 9945c099a7
15 changed files with 3759 additions and 13 deletions
+4
View File
@@ -0,0 +1,4 @@
/** A promisified animation frame. */
export default function animationFrame() {
return new Promise(resolve => requestAnimationFrame(resolve));
}
+1
View File
@@ -1,3 +1,4 @@
export { default as timeout } from "./timeout";
export { default as animationFrame } from "./animationFrame";
export { default as pascalCase } from "./pascalCase";
export { default as oncePerFrame } from "./oncePerFrame";