ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
import FlinkSQL from 'src/parser/flinksql';
|
|
|
|
describe('FlinkSQL Lexer tests', () => {
|
|
const parser = new FlinkSQL();
|
|
|
|
const sql = 'SELECT * FROM table1';
|
|
const tokens = parser.getAllTokens(sql);
|
|
test('token counts', () => {
|
|
expect(tokens.length).toBe(7);
|
|
});
|
|
});
|