about summary refs log tree commit diff stats
path: root/js
diff options
context:
space:
mode:
authorelioat <{ID}+{username}@users.noreply.github.com>2024-06-12 22:44:15 -0400
committerelioat <{ID}+{username}@users.noreply.github.com>2024-06-12 22:44:15 -0400
commit726cf0f11e532244045801fadaa990eae60aaf27 (patch)
treee163c0252f6d6c396455edc8216b589b02a3c7d2 /js
parent8e11dff662e8ec870dbf27a32377a21055127d52 (diff)
downloadtour-726cf0f11e532244045801fadaa990eae60aaf27.tar.gz
*
Diffstat (limited to 'js')
-rw-r--r--js/life.combinators.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/life.combinators.js b/js/life.combinators.js
index 3bfb0c6..a7f9e7e 100644
--- a/js/life.combinators.js
+++ b/js/life.combinators.js
@@ -99,6 +99,7 @@ const nextBoardState = B (A (B (A (K (A (I)))))) (A (B (A (K (A (I))))))
 
 // validate nextState rules
 (function() {
+    // FIXME: something is up with Bluebird I think...
     console.log('validating nextState');
     console.assert(nextState(true)(2) === true, 'nextState 1 failed');
     console.assert(nextState(true)(3) === true, 'nextState 2 failed');