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));
}