diff options
| author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2017-08-23 20:19:52 -0400 | 
|---|---|---|
| committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2017-08-23 20:19:52 -0400 | 
| commit | d6051158e52db719ae506fc48a45d22975b16a8b (patch) | |
| tree | 43e16f3fe4e75bc48b99127cd834c1d74e0bf860 /__tests__ | |
| parent | 6a323b30b3a4b80baec963b4308bd8d8d2a48ad9 (diff) | |
Implement again
Diffstat (limited to '__tests__')
| -rw-r--r-- | __tests__/dice.test.js | 28 | 
1 files changed, 27 insertions, 1 deletions
diff --git a/__tests__/dice.test.js b/__tests__/dice.test.js index 15941cb..a18584c 100644 --- a/__tests__/dice.test.js +++ b/__tests__/dice.test.js @@ -9,7 +9,8 @@ const {    negative,    explode,    keepHigh, -  keepLow +  keepLow, +  again  } = require('../src/dice.js')  const defaultNumberRolls = 500 @@ -534,3 +535,28 @@ describe('keep', () => {      testDie(die, basicDieTestSpecs(1, 20))    })  }) + +describe('again', () => { +  describe('10A1d10', () => { +    const die = again(constant(10), d(constant(1), constant(10))) + +    testDie(die, { +      variableDiceCount: { +        min: 1, +        max: Infinity +      }, +      average: { +        average: 6.11 +      }, +      variance: { +        variance: 19.03 +      }, +      bounds: { +        low: 1, +        high: Infinity, +        expectLow: true, +        expectHigh: false +      } +    }) +  }) +})  |