We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a6dac commit 6b2b8b5Copy full SHA for 6b2b8b5
packages/mondo/test/mondo.test.mjs
@@ -12,7 +12,7 @@ const p = (code) => parser.parse(code, -1);
12
13
describe('mondo tokenizer', () => {
14
const parser = new MondoParser();
15
- it('should tokenize with loangleions', () =>
+ it('should tokenize with locations', () =>
16
expect(
17
parser
18
.tokenize('(one two three)')
@@ -22,6 +22,7 @@ describe('mondo tokenizer', () => {
22
// it('should parse with loangleions', () => expect(parser.parse('(one two three)')).toEqual());
23
it('should get loangleions', () =>
24
expect(parser.get_locations('s bd rim')).toEqual([
25
+ [0, 1],
26
[2, 4],
27
[5, 8],
28
]));
0 commit comments