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