ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
19 lines
448 B
TypeScript
19 lines
448 B
TypeScript
import SparkSQL from 'src/parser/spark';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
const features = {
|
|
loadData: readSQL(__dirname, 'loadData.sql'),
|
|
};
|
|
|
|
describe('SparkSQL Load Syntax Tests', () => {
|
|
Object.keys(features).forEach((key) => {
|
|
features[key].forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|