You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* context keys: parser: fix test suite name
* context keys: parser: remove flaky tests (flaky because we output RegExp exceptions, which seemingly differ on node and browser)
assert.deepStrictEqual(parseToStr(input),"Lexing errors:\n\nUnexpected token '|' at offset 59. Did you mean '||'?\nUnexpected token '|' at offset 68. Did you mean '||'?\nUnexpected token '/ && resourceExtname in fooBar' at offset 86\n\n --- \nParsing errors:\n\nUnexpected error: SyntaxError: Invalid flags supplied to RegExp constructor ' && resourceExtname in fooBar' for token EOF at offset 116.\n");
assert.deepStrictEqual(parseToStr(input),"Lexing errors:\n\nUnexpected token ''' at offset 93\n\n --- \nParsing errors:\n\nUnexpected error: SyntaxError: Invalid flags supplied to RegExp constructor ''' for token EOF at offset 94.\n");
197
-
});
198
-
199
189
test('vim<c-r> == 1 && vim<2<=3',()=>{
200
190
constinput='vim<c-r> == 1 && vim<2<=3';
201
191
assert.deepStrictEqual(parseToStr(input),"Lexing errors:\n\nUnexpected token '=' at offset 23. Did you mean '==' or '=~'?\n\n --- \nParsing errors:\n\nUnexpected '=' at offset 23.\n");// FIXME
0 commit comments