m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/__tests__
diff options
context:
space:
mode:
Diffstat (limited to '__tests__')
-rw-r--r--__tests__/dice.test.js8
1 files changed, 7 insertions, 1 deletions
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))
+ })
})