fix(node): update tests

This commit is contained in:
Amaan Qureshi 2024-02-02 11:30:19 -05:00
parent 9f2dc9d6b5
commit 8ab14a0ee5
No known key found for this signature in database
GPG key ID: E67890ADC4227273
3 changed files with 6 additions and 7 deletions

View file

@ -64,7 +64,7 @@ describe("Lookahead iterator", () => {
lookahead.delete();
});
const expected = ["identifier", "comment", "(", "*", "formal_parameters"];
const expected = ["identifier", "comment", "html_comment", "(", "*", "formal_parameters", "ERROR"];
it("should iterate over valid symbols in the state", () => {
const symbols = Array.from(lookahead);
assert.includeMembers(symbols, expected);