From 3915ca0932333f3d0d01538df915ac38810949cc Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Tue, 11 Jul 2017 21:04:59 -0400 Subject: Fix bug with compound dice --- __tests__/dice.test.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '__tests__') diff --git a/__tests__/dice.test.js b/__tests__/dice.test.js index fa2d2dc..4828ce4 100644 --- a/__tests__/dice.test.js +++ b/__tests__/dice.test.js @@ -169,7 +169,7 @@ const combinedDiceTestSpecs = (dieSpecs) => { const expectExtrema = dieSpecs.map(spec => (Math.pow(spec.sides, spec.number))) - .reduce(times) < 50 + .reduce(times) < 50 return { diceCount: combineSpecField(spec => (spec.diceCount)), average: { @@ -305,4 +305,10 @@ describe('compound dice', () => { testDie(die, testSpec) }) + + describe('(2d1)d(2d1)', () => { + const die = d(d(constant(2), constant(1)), d(constant(2), constant(1))) + + testDie(die, basicDieTestSpecs(2, 2)) + }) }) -- cgit v1.2.3