ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
17 lines
460 B
TypeScript
17 lines
460 B
TypeScript
import ImpalaSQL from 'src/parser/impala';
|
|
|
|
const randomText = `dhsdansdnkla ndjnsla ndnalks`;
|
|
const unCompleteSQL = `CREATE TABLE`;
|
|
|
|
describe('Impala SQL validate invalid sql', () => {
|
|
const parser = new ImpalaSQL();
|
|
|
|
test('validate random text', () => {
|
|
expect(parser.validate(randomText).length).not.toBe(0);
|
|
});
|
|
|
|
test('validate unComplete sql', () => {
|
|
expect(parser.validate(unCompleteSQL).length).not.toBe(0);
|
|
});
|
|
});
|