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