8f72a5af60
* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
17 lines
388 B
TypeScript
17 lines
388 B
TypeScript
import { SparkSQL } from '../../../filters';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
const features = {
|
|
cache: readSQL(__dirname, 'cache.sql'),
|
|
};
|
|
|
|
describe('Spark Cache Syntax Tests', () => {
|
|
features.cache.forEach((itemSql) => {
|
|
it(itemSql, () => {
|
|
expect(parser.validate(itemSql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|