ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
import PostgresSQL from 'src/parser/pgsql';
|
|
|
|
describe('PostgresSQL Lexer tests', () => {
|
|
const mysqlParser = new PostgresSQL();
|
|
|
|
const sql = 'select id,name,sex from user1;';
|
|
const tokens = mysqlParser.getAllTokens(sql);
|
|
|
|
test('token counts', () => {
|
|
expect(tokens.length).toBe(12);
|
|
});
|
|
});
|