m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/__tests__/parser.test.js
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2017-07-19 23:13:41 -0400
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2017-07-19 23:40:18 -0400
commitbe3415a7cb219fe0244e726ccd0f232485672ed6 (patch)
tree79d4f567116da67b82e93a162e0f67cd2dc6a8d0 /__tests__/parser.test.js
parent3fccdd3d61d96d3c979f72c7a9d9c26420ae3656 (diff)
Lex and parse explosions
Diffstat (limited to '__tests__/parser.test.js')
-rw-r--r--__tests__/parser.test.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/__tests__/parser.test.js b/__tests__/parser.test.js
index 47944d2..26febef 100644
--- a/__tests__/parser.test.js
+++ b/__tests__/parser.test.js
@@ -115,6 +115,18 @@ describe('parse', () => {
})
})
+ it('parses exploding dice', () => {
+ expect(parse('1E1d6')).toEqual({
+ type: 'E',
+ left: { type: 'constant', value: 1 },
+ right: {
+ type: 'd',
+ left: { type: 'constant', value: 1 },
+ right: { type: 'constant', value: 6 }
+ }
+ })
+ })
+
describe('parsing parentheses', () => {
test('(1d6)d6', () => {
expect(parse('(1d6)d6')).toEqual({