ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
17 lines
376 B
TypeScript
17 lines
376 B
TypeScript
import SparkSQL from 'src/parser/spark';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
const features = {
|
|
list: readSQL(__dirname, 'list.sql'),
|
|
};
|
|
|
|
describe('Spark List Syntax Tests', () => {
|
|
features.list.forEach((itemSql) => {
|
|
it(itemSql, () => {
|
|
expect(parser.validate(itemSql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|