m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/__tests__/lexer.test.js
diff options
context:
space:
mode:
Diffstat (limited to '__tests__/lexer.test.js')
-rw-r--r--__tests__/lexer.test.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/__tests__/lexer.test.js b/__tests__/lexer.test.js
index 38c880e..b9260b8 100644
--- a/__tests__/lexer.test.js
+++ b/__tests__/lexer.test.js
@@ -5,8 +5,16 @@ describe('lex', () => {
expect(lex('')).toEqual([])
})
- it('signals an error on unexpected input', () => {
- expect(lex('q')).toBe('error')
+ it('throws on unexpected input', () => {
+ expect(() => { lex('q') }).toThrow(/Syntax error/)
+ })
+
+ it('throws on unexpected input at the end', () => {
+ expect(() => { lex('1d6 `') }).toThrow(/Syntax error/)
+ })
+
+ it('throws on unexpected input in the middle', () => {
+ expect(() => { lex('2d3 + b 3d4') }).toThrow(/Syntax error/)
})
describe('ignores whitespace', () => {