1038a3a828
* fix: #246 program does not match standaloneClause * test: patch unit tests
17 lines
457 B
TypeScript
17 lines
457 B
TypeScript
import { SparkSQL } from '../../filters';
|
|
|
|
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);
|
|
});
|
|
});
|