Skip to content

Commit 6b2b8b5

Browse files
committed
fix: test
1 parent 64a6dac commit 6b2b8b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/mondo/test/mondo.test.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const p = (code) => parser.parse(code, -1);
1212

1313
describe('mondo tokenizer', () => {
1414
const parser = new MondoParser();
15-
it('should tokenize with loangleions', () =>
15+
it('should tokenize with locations', () =>
1616
expect(
1717
parser
1818
.tokenize('(one two three)')
@@ -22,6 +22,7 @@ describe('mondo tokenizer', () => {
2222
// it('should parse with loangleions', () => expect(parser.parse('(one two three)')).toEqual());
2323
it('should get loangleions', () =>
2424
expect(parser.get_locations('s bd rim')).toEqual([
25+
[0, 1],
2526
[2, 4],
2627
[5, 8],
2728
]));

0 commit comments

Comments
 (0)