diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/life.combinators.js | 1 |
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'); |