m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/__tests__/parser.test.js
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2017-08-30 16:30:23 -0400
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2017-08-30 16:30:23 -0400
commit5b77a409c912f7251da8c170bd4a3aa8826d989b (patch)
tree0b3131a6a1c87b7a3af3537d4d548392866bb812 /__tests__/parser.test.js
parent7efea0582dda35cd7dc0c370ef3b56c84b2f2291 (diff)
Implement again under
Diffstat (limited to '__tests__/parser.test.js')
-rw-r--r--__tests__/parser.test.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/__tests__/parser.test.js b/__tests__/parser.test.js
index 765388d..ad67fc4 100644
--- a/__tests__/parser.test.js
+++ b/__tests__/parser.test.js
@@ -219,6 +219,16 @@ describe('parse', () => {
right: { type: 'constant', value: 10 }
}
})
+
+ expect(parse('10a3d10')).toEqual({
+ type: 'a',
+ left: { type: 'constant', value: 10 },
+ right: {
+ type: 'd',
+ left: { type: 'constant', value: 3 },
+ right: { type: 'constant', value: 10 }
+ }
+ })
})
it('parases dice with threshold', () => {