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 PLSQL from 'src/parser/plsql';
|
|
|
|
describe('PLSQL Lexer tests', () => {
|
|
const parser = new PLSQL();
|
|
|
|
const sql = 'select id,name,sex from user1;';
|
|
const tokens = parser.getAllTokens(sql);
|
|
|
|
test('token counts', () => {
|
|
expect(tokens.length).toBe(12);
|
|
});
|
|
});
|