change threshold
diff --git a/test/index.js b/test/index.js
index 607c49c..43ebbc9 100644
--- a/test/index.js
+++ b/test/index.js
@@ -228,7 +228,7 @@
     const diff = new PNG({width, height});
 
     const result = pixelmatch(img1.data, img2.data, diff.data, width, height, {threshold: 0});
-    if (result !== 0) {
+    if (result > 200) {
         throw new Error(`Animation failed: ${folderName} at frame: ${fileName}`)
     }
 }