13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
|
import { PostgresSQL } from '../../../src/';
|
||
|
|
||
|
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);
|
||
|
});
|
||
|
});
|